Cancel
For example, you want to assign C: / Windows / System this string to STR
Under normal circumstances: string str = "c: // windows // system";
Because in C #, // will only be escapped into one /, for example, / N is a newline character
Join @, you can do this:
String str = @ "c: / windows / system";