Monday, May 4, 2009

Read and Write to a Text File C#

using System.IO;
Reading a Text File:
Code:
static void Main(string[] args)
{
// create reader & open file
TextReader tr = new StreamReader("date.txt");

// read a line of text
Console.WriteLine(tr.ReadLine());

// close the stream
tr.Close();
}
Writting a Text File
Code:
static void Main(string[] args)
{
// create a writer and open the file
TextWriter tw = new StreamWriter("date.txt");

// write a line of text to the file
tw.WriteLine(DateTime.Now);

// close the stream
tw.Close();
}

No comments:

Post a Comment

Popular Posts