Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 562 Bytes

RCS1133.md

File metadata and controls

36 lines (25 loc) · 562 Bytes

RCS1133: Remove redundant Dispose/Close call

Property Value
Id RCS1133
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

using (streamReader) // RCS1133
{
    // ...

    streamReader.Dispose();
}

Code with Fix

using (streamReader)
{
    // ...
}

See Also

(Generated with DotMarkdown)