Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 603 Bytes

RCS1085.md

File metadata and controls

34 lines (23 loc) · 603 Bytes

RCS1085: Use auto-implemented property

Property Value
Id RCS1085
Category Simplification
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; }

See Also

(Generated with DotMarkdown)