Since we're talking auto-created comments in code, I'll point this out.
I recall, (but don't have an example in front of me) that the VB templates create comments like this:
' /// This is a comment.
While the C# does this:
/// This is a comment.
Lovely, but it interferes with ndoc, which generates CHM files from comments on classes. NDoc is looking for the three marks, the single quote in VB, the slash in C#, and is confused by the above VB commenting. In short, ndoc doesn't work for VB generated code.
Gee, that's too many lines to change in the templates, is it?
Again, this was true last time I look for it, some six months ago. You may have fixed it since, and I'm not near the code right now.