sMaN
sMaN

Reputation: 3937

Readable generated xml comments

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

Answers (3)

Jeff Ogata
Jeff Ogata

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

Abdel Raoof Olakara
Abdel Raoof Olakara

Reputation: 19353

You have variety of tools for doing this:

  1. NDoc
  2. Devscribe

You can get a list of many other document generators here!

Upvotes: 0

Liviu Mandras
Liviu Mandras

Reputation: 6617

You can use Ghost Doc.

Upvotes: 2

Related Questions