Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 529 Bytes

RCS1039.md

File metadata and controls

34 lines (24 loc) · 529 Bytes

RCS1039: Remove argument list from attribute

Property Value
Id RCS1039
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

[Obsolete()] // RCS1039
public void Foo()
{
}

Code with Fix

[Obsolete]
public void Foo()
{
}

See Also

(Generated with DotMarkdown)