Category "using-statement"

Type used in a using statement should be implicitly convertible to IDisposable

I have the following logic: try { using (var contents = new StreamReader(file.InputStream).ReadToEnd()) { var rows = contents.Split(new[] { Enviro

Handling IDisposable object without the using statement

I'm sure this is an easy question, but what am I supposed to do when handling an IDisposable object without the using statement?