Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 543 Bytes

RCS0025.md

File metadata and controls

31 lines (21 loc) · 543 Bytes

RCS0025: Put full accessor on its own line

Property Value
Id RCS0025
Severity None

Example

Code with Diagnostic

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

Code with Fix

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

Applies to

(Generated with DotMarkdown)