When writing file paths in C#, I found that I can either write something like \"C:\\\" or \"C:/\" and get the same path. Which one is recommended? I heard somewhere that usi
I write paths in C# like this:
@"C:\My\Path"
The @ character turns off \ escaping.