Total .NET Analyzer Rule Documentation  

NameLength Rule

Lengthen variable names to describe the purpose of the variable.

Remarks

In general, variable names should be between 4 and 32 characters long, and should describe the purpose of the variable. Short variable names often don't identify the purpose of the variable, and make your code difficult to understand, debug, and maintain.

Total .NET Analyzer identifies variables with names shorter than the minimum length specified in the Rule Editor. The default minimum length for variable names is 3, but you can change this number as desired.

Resolution

In order to make your code easier to read and understand, you should rename your variable to be more descriptive.

See Also

Naming Conventions