Output bug when a string starts with a single space.
The following C# Statements LINQPad script can demonstrate this bug:
The output is dropping the leading single space in font of the "1" on the first line. Interestingly enough, adding a second space in front of the 1 outputs correctly.
Console.WriteLine(" 1");
Console.WriteLine("23");
The output is dropping the leading single space in font of the "1" on the first line. Interestingly enough, adding a second space in front of the 1 outputs correctly.
Comments