S2364 — "Private" fields should comply with a naming convention

Language
VB.NET
Type
Code smell
Severity
Minor
Tags
convention

Why is this an issue?

Shared coding conventions allow teams to collaborate efficiently. This rule checks that all Private field names match the provided regular expression.

Note that this rule does not apply to Private Shared ReadOnly fields, which are checked by another rule.

The default configuration is:

Noncompliant code example

With the default regular expression ^(s_|_)?[a-z][a-z0-9]*([A-Z]{1,3}[a-z0-9]+)*([A-Z]{2})?$:


Class Foo
    Private Foo As Integer  ' Noncompliant
End Class

Compliant solution


Class Foo
    Private foo As Integer  ' Compliant
End Class

↑ Back to top