public static void Main()
StreamReader streamReader = null;
streamReader = new StreamReader(@"E:\practice\notepadreader.txt");
Console.WriteLine(streamReader.ReadToEnd());
catch(FileNotFoundException ex)
Console.WriteLine("Please check if the file {0} exists", ex.FileName);
Console.WriteLine(ex.Message);
Console.WriteLine("finally block executed");