C Sharp (C#) - File IO
What will be the content of the file "notes.txt" after running this code?
string path = "notes.txt"; File.WriteAllText(path, "Line 1\nLine 2"); File.WriteAllText(path, "New Line");
