Files
Introduktion-till-CSharp/12.2-FileWriter/FileWriter.cs
2018-02-22 23:01:00 +01:00

20 lines
387 B
C#

using System;
using System.IO;
class FileWriter {
public static void Main() {
StreamWriter writer = new StreamWriter("../../namn.txt");
writer.WriteLine("Anna");
writer.WriteLine("Bertil");
writer.WriteLine("Catrin");
writer.WriteLine("David");
writer.WriteLine("Estelle");
writer.WriteLine("Fredrik");
writer.Close();
Console.WriteLine("Allt klart....");
}
}