Best Coding Practices – TIP 2

When you throw an exception, use the throw keyword..do not throw the original exception. This way, the original call stack is preserved.

Best Coding Practices – TIP 1

Use // or /// for comments. Avoid using /* … */

This gives you the ability to generate XML documentation from VS.