// Using statement to access low level resources
// Replacement for try/catch/finally
// Make a resource, use it, and dispose of resource
using System;
using System.IO;
public class Program
{
public static void Main()
}