C Sharp/C# – Read a complete text file

By | May 7, 2011

Hi,

Use the following code example to read a complete text file using C Sharp/C#.

using System;
using System.Data;
using System.IO;



class Class1{

  static void Main(string[] args){

      StreamReader sampleStreaming= new StreamReader("trialText.txt");

      Console.WriteLine(sampleStreaming.ReadToEnd());

      sampleStreaming.Close();
    }
}

:)


Leave a Reply

Your email address will not be published. Required fields are marked *