til

String Literals

In C#, when dealing with string, @ is for escaping characters, it’s like r in python.

    string test = @"hello \t world"; // "hello \t world"

Reference