Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 508 Bytes

RCS1045.md

File metadata and controls

28 lines (18 loc) · 508 Bytes

RCS1045: Rename private field according to camel case with underscore

Property Value
Id RCS1045
Category Naming
Severity None

Example

Code with Diagnostic

private string f; // RCS1045

Code with Fix

private string _f;

See Also

(Generated with DotMarkdown)