C Sharp (C#) - Exception Handling
What will be the output of this code?
using (var sw = new System.IO.StringWriter()) {
sw.Write("Hello");
Console.WriteLine(sw.ToString());
}