Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 495 Bytes

RCS1187.md

File metadata and controls

28 lines (18 loc) · 495 Bytes

RCS1187: Use constant instead of field

Property Value
Id RCS1187
Category Design
Severity Info

Example

Code with Diagnostic

private static readonly int _foo = 0;

Code with Fix

private const int _foo = 0;

See Also

(Generated with DotMarkdown)