C Sharp (C#) - File IO
What will be the output of this C# code?
using (var writer = new StreamWriter("log.txt"))
{
writer.WriteLine("Hello");
}
Console.WriteLine(File.ReadAllText("log.txt"));