Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 748 Bytes

RCS1170.md

File metadata and controls

31 lines (21 loc) · 748 Bytes

RCS1170: Use read-only auto-implemented property

Property Value
Id RCS1170
Category Design
Default Severity Info
Enabled by Default
Supports Fade-Out
Supports Fade-Out Analyzer -

Example

Code with Diagnostic

public object Foo { get; private set; } // RCS1170

Code with Fix

public object Foo { get; }

See Also

(Generated with DotMarkdown)