Fork me on GitHub
TypeName AlwaysUseVarAnalyzer
Check Id CC0001
Category Style
Severity Warning

Cause

Usage of an implicit type helps improve readability of the code. Code depending on types for their readability should be refactored with better variable names or by introducing well-named methods.

Example

int a = 10;

Code fix

A code fix will be presented to you that will transform the code:

var a = 10;

Code fix

Related rules

None

See also

TBD