Can anybody recommend tools to generate Documentation from Delphi and C# code, It should enable export as XML using XSLT and PDF. If Delphi or C# is not supported but the tool is extendable this would be Ok. Class inheritance would be very appreciated, i would even say its very important in this case.

If anybody has some experience with some generation tools he is welcome to tell about it, what is more and what is less important in this case, we are wishing to find a good tool which we wouldnt change in a couple of years.

link|improve this question

for .net there is nDoc: ndoc.sourceforge.net – Davide Piras Feb 25 '11 at 12:50
according to this post, nDoc died in 2006: charliedigital.com/2006/07/26/ndoc-2-is-officially-dead, however there seems to be a successor: ndoc3.sourceforge.net – mjn Feb 25 '11 at 12:59
feedback

4 Answers

up vote 9 down vote accepted

The best tool I have ever come across is doc-o-matic. Not free, but well worth the money. However, as it is not only a doc generation tool, but also a help authoring tool and much more, it may be over kill if you are looking to "just" generate some documentation from your code.

Website for doc-o-matic: http://doc-o-matic.com/

Update

According to the site there is a "source" edition and an "express" edition for those who only need source code documentation generation.

And what I forgot to mention earlier, and what perhaps is the single most important feature for me is that doc-o-matic not only supports extraction of javadoc and xmldoc style comments, but is able to extract "native" comments and picks up on "human" style comment formatting. For example if you have a table in your comment using basic indenting and alignment, doc-o-matic picks up on that.

(And no, I do not get any commissions on this :-)), I just think it is an awesome tool...)

link|improve this answer
feedback

Take a look at SynProject, an Open Source tool written in Delphi.

It was designed to handle a full documentation workflow, from specifications to release notes, including tests, architecture and design; and of course there is an integrated Delphi parser to generate architecture documentation from existing Delphi source code.

For the architecture document, the source code can extract comments (ala PasDoc) then embed this text into the main Architecture document (with class hierarchy diagrams and unit dependencies).

You write a plain text file using a wiki-like syntax in a dedicated text editor, then SynProject creates well formated Word documents from it. Some Wizards are available to access the content. But since it's stored as plain file, multiple programmers can write on it, using any SCM tool (SVN, Fossil...).

For instance, I currently use it for writing maintenance documentation for a huge and old Delphi application (about 2,000,000 lines of code written in Delphi 5 and 6), with no prior available documentation. You describe the changes made to the code (by quoting the unit/class/method), then the tool will update all documentations to reflect and trace those modifications. SynProject was designed to be compliant with some very "delicate" regulation rules (IEC 62304), but can be used for any project due to its unique "flat" design.

About C# compatibility, it's already possible to add some C# source code in your documentation, and it will be highlighted correctly.

I'm about to add direct DotNet classes documentation in the generated Architecture document, just like is made with the internal Delphi parser. My current employer just want to use this tool for both our Delphi and C# projects. I'll include class library documentation from .NET assemblies and the XML documentation files generated by the C# compiler, just like NDoc does.

link|improve this answer
feedback

The open source tool Doxygen supports C# (and many other languages) and via the pas2dox filter it can also document Delphi source code. So you could have one tool for both worlds. Doxygen is very flexible and can even generate hyperlinked inheritance graphs out of the box.

An example documentation for one of my Delphi libraries is here.

link|improve this answer
feedback

i would write my own generation tool, this may take some time but you will be able to parse the recent comments instead of changing all comments in code to match the doc generator.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.