Duplicate: http://stackoverflow.com/questions/308752/c-comments-tutorial#308770
What different kinds off comment styles do you use in your VS2008 C# code? Which do you prefer, and why? I've listed the obvoius ones that I allready know of below.
Single line comment or end of line comment:
//Comment goes here.
Single/Multi line comment in another color:
/// <summary>
/// Comment goes here.
/// </summary>
Multiline comment style:
/*
* Comment...
* Comment goes here
*/
