File.WriteAllLines : File « File Directory Stream « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

class MainClass
{
    static void Main(string[] args)
    {
        string[] lines = new string[10];
        for (int i = 0; i < 10; i++)
        {
            lines[i] = String.Format( "This is line number {0}", i);
        }

        File.WriteAllLines(@"c:\test.txt", lines);

        foreach (string line in File.ReadAllLines(@"c:\test.txt"))
        {
            Console.WriteLine(line);
        }
    }
}








15.1.File
15.1.1.Key Members of the System.IO Namespace
15.1.2.File: GetCreationTime and GetLastAccessTime
15.1.3.Create the FileInfo class from the file selected in the OpenFileDialog
15.1.4.File.Exists
15.1.5.File.ReadAllLines
15.1.6.File.WriteAllLines