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\"
The @ before a string assumes you have no escaping, so you'll need to concatenate:
string value = @"Hello ""big""" +"\t"+ @"world \\\\\";
So in other words, yes "" is the only trick available.