C Sharp (C#) - File IO
Identify the error in this code snippet:
File.WriteAllText("output.txt", "Hello World");
File.WriteAllText("output.txt", "New Content");
string text = File.ReadAllText("output.txt");
Console.WriteLine(text);