string str = @"C:\Windows";
string str = "C:\\Windows";
In order to express string: abc"def
string str = "abc\"def";
string str = @"abc""def";