Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 375 Bytes

RCS1010.md

File metadata and controls

23 lines (15 loc) · 375 Bytes

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

Property Value
Id RCS1010
Severity None

Example

Code with Diagnostic

Foo foo = new Foo();

Code with Fix

var foo = new Foo();

(Generated with DotMarkdown)