Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 627 Bytes

RCS1170.md

File metadata and controls

29 lines (19 loc) · 627 Bytes

RCS1170: Use read-only auto-implemented property

Property Value
Id RCS1170
Category Design
Severity Info
Minimal Language Version 6.0

Example

Code with Diagnostic

public object Foo { get; private set; }

Code with Fix

public object Foo { get; }

See Also

(Generated with DotMarkdown)