Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 481 Bytes

RCS1170.md

File metadata and controls

24 lines (16 loc) · 481 Bytes

RCS1170: Use read-only auto-implemented property

Property Value
Id RCS1170
Severity Info
Minimum language version 6.0

Example

Code with Diagnostic

public object Foo { get; private set; }

Code with Fix

public object Foo { get; }

(Generated with DotMarkdown)