Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 504 Bytes

RCS1129.md

File metadata and controls

28 lines (18 loc) · 504 Bytes

RCS1129: Remove redundant field initalization

Property Value
Id RCS1129
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

private bool _f = false; // RCS1129

Code with Fix

private bool _f;

See Also

(Generated with DotMarkdown)