C Sharp (C#) - Strings and StringBuilder
Find the error in this code snippet:
StringBuilder sb = new StringBuilder();
sb.AppendLine("Line1");
sb.AppendLine(123);
Console.WriteLine(sb);