I'm finishing up some of my first C# classes and even though the original code I inherited is completely void of comments, I always put javadoc comments on my methods when I was writing java and my code currently looks strange without those blocks.
I normally formatted my comments by using the "Insert JavaDoc" command in Eclipse, which simply laid out the template and pulled in the parameters, method name, etc...from the method the command was run on. Then I could add more detail from there.
Is there a similar command in Visual Studio 2008? I couldn't find one when I was poking around the menus. Additionally, is there a standard convention of commenting style (similar to JavaDoc) that is used in the C# world?