Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 438 Bytes

RCS1085.md

File metadata and controls

29 lines (20 loc) · 438 Bytes

RCS1085: Use auto-implemented property

Property Value
Id RCS1085
Severity Info

Example

Code with Diagnostic

private string _foo;

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

Code with Fix

public string Foo { get; set; }

(Generated with DotMarkdown)