Use object inside using statement : Using Statement « File Directory Stream « C# / CSharp Tutorial






using System; 
using System.IO; 
 
class MainClass { 
  public static void Main() { 
    StreamReader sr = new StreamReader("test.txt"); 
 
    using(sr) { 
      Console.WriteLine(sr.ReadLine()); 
      sr.Close(); 
    } 
 
  } 
}
124.23








15.33.Using Statement
15.33.1.Use object inside using statement
15.33.2.Create object inside the using statement
15.33.3.Using Statement: using DIRECTIVE, not using statement
15.33.4.Use FileStream inside a using statement
15.33.5.Dispose a StreamWriter by using 'using'
15.33.6.Using statement to deal with multiple resources
15.33.7.Nested using statement