Long acronyms should be pascal-cased

TypeName

LongAcronymsShouldBePascalCased

CheckId

CA1705

Category

Microsoft.Naming

Breaking Change

Breaking

Cause

The name of an identifier contains an acronym of three or more uppercase letters.

Rule Description

This rule assumes it has found an acronym when the name contains four uppercase letters in a row, or at the end of the name, three uppercase letters in a row.

By convention, two-letter acronyms use all uppercase letters, and acronyms of three or more characters use Pascal casing. The following examples conform to this naming convention: 'DB', 'CR', 'Cpa', and 'Ecma'. The following examples violate the convention: 'Io', 'XML', and 'DoD', and for non-parameter names, 'xp' and 'cpl'.

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

Change any three-letter acronyms in the name to Pascal case, and change any two-letter acronyms to uppercase.

When to Exclude Warnings

Do not exclude a warning from this rule.

Identifiers should be cased correctly

Identifiers should differ by more than case

Short acronyms should be uppercase