Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 556 Bytes

RCS1176.md

File metadata and controls

28 lines (18 loc) · 556 Bytes

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

Property Value
Id RCS1176
Category Simplification
Severity None

Example

Code with Diagnostic

string s = GetValue(); // RCS1176

Code with Fix

var s = GetValue();

See Also

(Generated with DotMarkdown)