Reputation: 3937
Is there some simple, standard way of converting my C# xml comments generated xml file into a format that is easily read. I have no need for setting any formatting, adding new tags, etc, I just need to display my generated file eg. javadoc style or not similar, in the most simplest, easiest way possible. Cheers.
Upvotes: 1
Views: 541
Reputation: 57783
I use Sandcastle and Sandcastle Help File Builder, which produces MSDN style help files from xml doc comments. You can find a detailed guide here.
Another option is Doxygen, which I found to be easier to use than Sandcastle. In the end, I preferred the look of the help file that Sandcastle produced, so I chose Sandcastle over Doxygen.
Upvotes: 2
Reputation: 19353
You have variety of tools for doing this:
You can get a list of many other document generators here!
Upvotes: 0