views:

31

answers:

1

What tool do I need to generate XML intellisense help file as shown below?

alt text

+1  A: 

You need to add XML Documentation comments to your code, and then in your Visual Studio project build options ("Build" tab) tick the "XML documentation file" checkbox to extract those comments to the XML file.

Try AtomineerUtils or GhostDoc to help you to create/update the xml documentation comments quickly and easily.

Jason Williams