C Sharp (C#) - Strings and StringBuilder
What will be the output of this C# code?
string part1 = "code"; string part2 = part1 + "123"; Console.WriteLine(part2.Length);
