Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 703 Bytes

RCS1005.md

File metadata and controls

36 lines (26 loc) · 703 Bytes

RCS1005: Simplify nested using statement

Property Value
Id RCS1005
Category Simplification
Severity Hidden

Example

Code with Diagnostic

using (var fs = new FileStream("path", FileMode.OpenOrCreate))
{ // RCS1005
    using (var sr = new StreamReader(fs))
    {
    }
}

Code with Fix

using (var fs = new FileStream("path", FileMode.OpenOrCreate))
using (var sr = new StreamReader(fs))
{
}

See Also

(Generated with DotMarkdown)