Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 365 Bytes

RCS1055.md

File metadata and controls

27 lines (19 loc) · 365 Bytes

RCS1055: Avoid semicolon at the end of declaration

Property Value
Id RCS1055
Severity Hidden

Example

Code with Diagnostic

public class Foo
{
}; // RCS1055

Code with Fix

public class Foo
{
}

(Generated with DotMarkdown)