Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 646 Bytes

RCS1045.md

File metadata and controls

36 lines (23 loc) · 646 Bytes

RCS1045: Rename private field to camel case with underscore

Property Value
Id RCS1045
Category Naming
Severity None

Example

Code with Diagnostic

private string f;

Code with Fix

private string _f;

Options

Do not rename private static field to camel case with underscore

roslynator.RCS1045.suppress_when_field_is_static = true

See Also

(Generated with DotMarkdown)