Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 444 Bytes

RCS1009.md

File metadata and controls

31 lines (21 loc) · 444 Bytes

RCS1009: Use explicit type instead of 'var' (foreach variable)

Property Value
Id RCS1009
Severity None

Example

Code with Diagnostic

var items = new List<string>();

// ...

foreach (var item in items) // RCS1009
{
}

Code with Fix

foreach (string item in items)
{
}

(Generated with DotMarkdown)