C Sharp (C#) - File IO
What will be the content of "log.txt" after this code runs?
string log = "Start";
File.WriteAllText("log.txt", log);
File.AppendAllText("log.txt", " - End");