I have been using XML comments to document my source code in VB.Net (and C# when I get to). I seem to remember someone telling me a long time ago that there was a way to automatically export the XML comments into a text document or other format for easy reference outside of Visual Studio. Is there? What is it, or are they?
Asked
Active
Viewed 3,370 times
1 Answers
8
It's a build setting.
Go into the project properties pages, and turn on "Generate XML Documentation".
For details, see MSDN here.

Reed Copsey
- 554,122
- 78
- 1,158
- 1,373
-
I just knew it was something easy I was missing. Thanks! – RiddlerDev Aug 14 '09 at 16:47