Reputation: 1173
In vb.net I can write an XML documentation by using some tags, like the following
'''<summary>
''' Hello there!
'''</summary>
In Java, I simply can export my Javadoc documentation in a single click (it generates an Html file).
Is there a way to do something similar in vb.net?
Upvotes: 0
Views: 1085
Reputation: 5577
There are several tools that can generate a documentation in HTML or other formats out of the XML comments. Some of them:
Upvotes: 1