Sponsored Ad

Tuesday, October 6, 2009

C# System.IO

C-Sharp provides a file class which is acclimated in manipulating argument files. The file class is aural the System namespace. Also we can use the StreamReader and StreamWriter classes, which are aural the System.IO, namespace for account from and autograph to a argument file.

 

using System;
using System.IO;

class Test
{
    public static void Main()
    {
        try
        {
            // Create an instance of StreamReader to read from a file.
            // The using statement also closes the StreamReader.
            using (StreamReader sr = new StreamReader("TestFile.txt"))
            {
                string line;
                // Read and display lines from the file until the end of
                // the file is reached.
                while ((line = sr.ReadLine()) != null)
                {
                    Console.WriteLine(line);
                }
            }
        }
        catch (Exception e)
        {
            // Let the user know what went wrong.
            Console.WriteLine("The file could not be read:");
            Console.WriteLine(e.Message);
        }
    }
}

0 comments:

Post a Comment

Sponsored Ad

Website Update

Followers