C Sharp (C#) - Strings and StringBuilder
What will be the output of this C# code?
var sb = new StringBuilder();
sb.Append("Hello");
sb.Append(" World");
Console.WriteLine(sb.ToString());