| TypeName | AlwaysUseVarAnalyzer |
| Check Id | CC0001 |
| Category | Style |
| Severity | Warning |
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.
int a = 10;A code fix will be presented to you that will transform the code:
var a = 10;
None
TBD