C Sharp (C#) - Strings and StringBuilder
What will be the output of this code?
var sb = new System.Text.StringBuilder();
sb.Append("123");
sb.Insert(1, "abc");
Console.WriteLine(sb.ToString());