Identifiers should not contain underscores
TypeName |
IdentifiersShouldNotContainUnderscores |
CheckId |
CA1707 |
Category |
Microsoft.Naming |
Breaking Change |
Breaking |
Cause
The name of an identifier contains the underscore (_) character.
Rule Description
By convention, identifier names do not contain the underscore (_) character. The rule checks namespaces, types, members, and parameters.
Naming conventions provide a common look for libraries that target the common language runtime. This reduces the learning curve required for new software libraries, and increases customer confidence that the library was developed by someone with expertise in developing managed code.
How to Fix Violations
Remove all underscore characters from the name.
When to Exclude Warnings
Do not exclude a warning from this rule.