Single leading space is not displayed
Consider this program
void Main()
{
Console.WriteLine("a");
Console.WriteLine(" a");
Console.WriteLine(" a");
}
The expected output is
a a aBut LINQPad displays the output as
a a aIf you copy-paste the output into another program, the leading space is there as expected. (LINQPad version 4.55.03.)
Comments
-
This has been fixed in the most recent beta.
www.linqpad.net/download.aspx#beta
