Recently i found out i can write in a \" by writing two \" ex @\"abc\"\"def\". I find the @ string literal useful. But how do i write in a tab or n
\"
@\"abc\"\"def\"
Once you start a string with @ you can put anything in between, also tabs or newlines:
string test = @"test bla bjkl";
the above string will contain the 4 newlines.