Home
Options

Output bug when a string starts with a single space.

The following C# Statements LINQPad script can demonstrate this bug:

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

Sign In or Register to comment.