Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 536 Bytes

RCS1012.md

File metadata and controls

28 lines (18 loc) · 536 Bytes

RCS1012: Use explicit type instead of 'var' (when the type is obvious)

Property Value
Id RCS1012
Category Readability
Severity None

Example

Code with Diagnostic

var foo = new Foo(); // RCS1012

Code with Fix

Foo foo = new Foo();

See Also

(Generated with DotMarkdown)