C Sharp (C#) - File IO
Find the problem in this code:
using(var writer = new StreamWriter("log.txt")) {
writer.WriteLine("Start");
}
writer.WriteLine("End");