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