- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
static void WriteToFile()
{
StreamWriter SW;
SW=File.CreateText("c:\\MyTextFile.txt");
SW.WriteLine("God is greatest of them all");
SW.WriteLine("This is second line");
SW.Close();
Console.WriteLine("File Created SucacessFully");
}
Комментарии (7) RSS
Добавить комментарий