Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 425 Bytes

RCS1052.md

File metadata and controls

30 lines (22 loc) · 425 Bytes

RCS1052: Declare each attribute separately

Property Value
Id RCS1052
Severity None

Example

Code with Diagnostic

[Obsolete, Conditional("DEBUG")] // RCS1052
public void Foo()
{
}

Code with Fix

[Obsolete]
[Conditional("DEBUG")]
public void Foo()
{
}

(Generated with DotMarkdown)