Programmatically Speaking ...

This site

Fav Blogs

Sponsors

  • MaximumASP
  • Packet Sniffer

Browse by Tags

All Tags » coding tips (RSS)
Some useful little tips in .NET coding
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...