Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 540 Bytes

RCS1010.md

File metadata and controls

28 lines (18 loc) · 540 Bytes

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

Property Value
Id RCS1010
Category Simplification
Severity None

Example

Code with Diagnostic

Foo foo = new Foo();

Code with Fix

var foo = new Foo();

See Also

(Generated with DotMarkdown)