Reputation: 1807
I've commented my code (with three "///" at class-level and some methods), but as it as an exam, my teacher wants the documentation in my report.
Im wondering two things:
How to generate xml file of my comments ?
Do anyone know if there exist a good program to generate html files of the xml documentation ? to get it as "javadoc" style...
Upvotes: 2
Views: 249
Reputation: 20320
To get the file.
Right Click Project
Select Properties
Select build tab,
at the bottom in the output section there's a checkbox
called Xml Documentation file
.
After you have that, style and transform as desired.
Upvotes: 1
Reputation: 69372
You could use Sandcastle Help File Builder or use Sandcastle directly. I've only the used the Help File Builder in the past but I've heard that using Sandcastle directly can be cumbersome at times, although I don't know how accurate that is. This tutorial might help.
Upvotes: 1