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:
_foo, s_foo 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
Class Foo
Private foo As Integer ' Compliant
End Class