vb.net comments to developer documentation

G

Guest

I see that a few people on this board are recommending VB Commenter. It works well as far as getting a comment structure in my code, but what about generating the proper code docs? I've tried NDoc. It seems to generate some, but not all of my documentation

For example, it is not generating the comments within the <value> tag which I am using to document my properties and the <summary> tag for methods. The only thing it seems to be generating is the <summary> tag for my classes

Are they any other tools that I can use

Thanx.
 
N

norton

NDoc includes many tags and we can include these tags into our comments
something like <SeeAlso>...etc is support and it works fine with NDoc

Hope it helps~


Michael A. Angelo said:
I see that a few people on this board are recommending VB Commenter. It
works well as far as getting a comment structure in my code, but what about
generating the proper code docs? I've tried NDoc. It seems to generate some,
but not all of my documentation.
For example, it is not generating the comments within the <value> tag
which I am using to document my properties and the <summary> tag for
 
G

Guest

I understand that is does include many tags. It tells me to use the <value> tag for properties and the <summary> tag for methods. I've done this and neither of these comments are being generated. The only comments that are generated are the <summary> tags at the class level.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top