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(); } } :) |