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
Use string.Concat() to concatenate
string.Concat()
string text = String.Concat(...)
and try to print this