I have a string, declared as:
string text = \"THIS IS LINE ONE \"+(Char)(13)+\" this is line 2\";
And yet, When I write Console.WriteLin
Console.WriteLin
(char)13 is a carriage return (To the left margin on the current line)
(char)13
THIS IS LINE ONE \r this is line 2"
Is interpreted as:
Print THIS IS LINE ONE then *return* and print this is line 2 The overlap is: E So you see: this is line 2E
Print THIS IS LINE ONE
then *return* and print this is line 2
The overlap is: E
So you see: this is line 2E