Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 510 Bytes

RCS1055.md

File metadata and controls

32 lines (22 loc) · 510 Bytes

RCS1055: Avoid semicolon at the end of declaration

Property Value
Id RCS1055
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

public class Foo
{
}; // RCS1055

Code with Fix

public class Foo
{
}

See Also

(Generated with DotMarkdown)