Text File Read
In this chapter you will learn:
File.ReadAllLines
using System;/*j a v a 2 s . co m*/
using System.Collections.Generic;
using System.Text;
using System.IO;
class MainClass
{
static void Main(string[] args)
{
StreamWriter writer = new StreamWriter(@"c:\myfile.txt");
for (int i = 0; i < 3; i++)
{
writer.Write(i.ToString());
}
writer.Flush();
writer.Close();
foreach (string line in File.ReadAllLines(@"c:\myfile.txt"))
{
Console.WriteLine(line);
}
}
}
The code above generates the following result.
Next chapter...
What you will learn in the next chapter: