File Directory Stream C# Tutorial

using System;
using System.IO;
public class MainClass
{
  static void Main(string[] args)
  {
    StreamReader MyStreamReader = new StreamReader(@"c:\Projects\Testing.txt");
    string str = MyStreamReader.ReadToEnd();
    Console.WriteLine(str);
    MyStreamReader.Close();
  }
}