In C#, when dealing with string, @ is for escaping characters, it’s like r in python.
@
r
string test = @"hello \t world"; // "hello \t world"
Reference