K
KrisK
How to do it simply:
string ss = @"tab\tnotab\n";
Write.Console(ss); // prints \t \n
How to reinterpret \t and \n
Thank you
string ss = @"tab\tnotab\n";
Write.Console(ss); // prints \t \n
How to reinterpret \t and \n
Thank you