Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 570 Bytes

RCS1024.md

File metadata and controls

32 lines (22 loc) · 570 Bytes

RCS1024: Format accessor list

Property Value
Id RCS1024
Category Formatting
Severity None

Example

Code with Diagnostic

string Foo { get { return _foo; } set { _foo = value; } } // RCS1024

Code with Fix

string Foo
{
    get { return _foo; }
    set { _foo = value; }
}

See Also

(Generated with DotMarkdown)