Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 740 Bytes

RCS1055.md

File metadata and controls

35 lines (25 loc) · 740 Bytes

RCS1055: Avoid semicolon at the end of declaration

Property Value
Id RCS1055
Category Redundancy
Default Severity Hidden
Enabled by Default
Supports Fade-Out
Supports Fade-Out Analyzer -

Example

Code with Diagnostic

public class Foo
{
}; // RCS1055

Code with Fix

public class Foo
{
}

See Also

(Generated with DotMarkdown)