Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 529 Bytes

RCS1107.md

File metadata and controls

32 lines (22 loc) · 529 Bytes

RCS1107: Remove redundant 'ToCharArray' call

Property Value
Id RCS1107
Category Redundancy
Severity Info

Example

Code with Diagnostic

foreach (char ch in s.ToCharArray()) // RCS1107
{
}

Code with Fix

foreach (char ch in s)
{
}

See Also

(Generated with DotMarkdown)