2
Reply

how to read data and write data in a text file?

isha iman

isha iman

Jun 26, 2013
1.2k
0

    For reading and writing data you use different byte stream as well as character stream . Mostly developer recommand character stream , First of all include namespace using System.IO; Reading: FileStream fs = new FileStream("FileName.txt" , FileMode.Open); StreamReader sr = new StreamReader(fs); string s; while((s=sr.ReadLine()) != null) { Console.ReadLine(s); } sr.Close(); fs.Close(); ...................... Writing FileStream f = new FileStream("FileName.txt" , FileMode.Create); StreamWriter sw = new StreamWriter(f); sw.WriteLine("String"); // You can write lines as you can s.Close(); f.Close();

    Salman Mushtaq
    December 15, 2013
    0

    pls check my blog :-http://arjunwalmiki.blogspot.in/ data-read from comport and save it in txt file and below same my friend also mentioned some comment might be some helpful for you.

    Arjun Walmiki
    August 14, 2013
    0