Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
For the latest documentation on Visual Studio, see CA1707: Identifiers should not contain underscores.
Item | Value |
---|---|
TypeName | IdentifiersShouldNotContainUnderscores |
CheckId | CA1707 |
Category | Microsoft.Naming |
Breaking Change | Breaking - when raised on assemblies Non-breaking - when raised on type parameters |
The name of an identifier contains the underscore (_) character.
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 that is required for new software libraries, and increases customer confidence that the library was developed by someone who has expertise in developing managed code.
Remove all underscore characters from the name.
Do not suppress a warning from this rule.