The following are some useful little tips for myself. The @ symbol in C# Instead of writting double \\s in a file or folder path, prefacing the string with "@", as following: string s = @"c:\webs\aspnet\csharp"; Prefacing a string with "@" also enables you write a string...