I've received a number of suggestions mentioning
numerous solutions. None of them is a functionality
built-in for VS. That's surprising...
If memory serves, there used to be built-in functionality to generate HTML
help in VS2003, but that has been dropped in 2005, and did not come back.
I though some HTML or XML would be created
during the process of compiling...
Well XML is indeed created - right-click your project and select Properties,
then go the Build tab. There, check "[x] XML documentation file".
An XML file with your comments (*) will be generated, but that is as far as it
goes, as far as I know.
It still makes sense to enable this IMHO, for two reasons:
- Intellisense - when e.g. calling a method of your own, you'll get your own
descriptions for what it does, for each parameter, for the return value ...
- Warnings - for each public element without a comment, you'll be reminded to
write one.
Regards,
Gilles.
(*): Enter a triple slash above a member (e.g. a method) in Visual Studio to
see how this works. See "XML Documentation" in help for more info.