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