Is there any kind of documentation generator for C#? Like something that would put the xml-ish documentation right above the method/class declarations? Is there a tool or is it tucked away somewhere in VS 2008?

link|improve this question

feedback

10 Answers

up vote 14 down vote accepted

You can start a comment with /// right above a class or class member and VS will insert some template documentation tags for you.

link|improve this answer
feedback

I recommend you to give a look to SandCastle. It generates class library documentation from .NET assemblies and the XML documentation files generated by the C# compiler. You may want to use the SandCastle GUI tools, SHFB, SandCastleGUI or DocProject which will ease completely the document generation process.

Also give a look to the recommended and allowed XML tags.

Update: I agree with the Matt's comment, NDoc is almost a dead project, and remember that you could use also the old XSLT way.

link|improve this answer
4  
NDoc is out of date, you should be using Sandcastle. There are various GUI frontends for Sandcastle, such as this one: codeplex.com/SHFB or this one: inchl.nl/SandcastleGUI – Matt Olenik Mar 13 '09 at 3:46
+1 for the nice collection of links. Tried to move the important pieces to the front for better readability. – David Schmitt May 6 '09 at 11:08
The heck... just tried SHFB and none of my methods have summaries or descriptions, even though they all have /// <summary> s. Probably a way to fix that, but these are stupid defaults. – Mark Nov 18 '10 at 21:10
2  
@Ralph You have to turn on the XML Documentation File in your Visual Studio project settings. Then add that XML file to your SHFB project. – mhenry1384 Dec 6 '10 at 16:39
@mhenry1384: Yeah... I figured that out shortly after leaving that comment and getting even more frustrated with other tools. Didn't need to add the XML file to the project though...it figured that much out. Not entirely sure why the XML files are necessary though.. the comments get baked into the assembly no? Because they appear with intellisense, so they must be stored in there somewhere. – Mark Dec 7 '10 at 3:03
show 1 more comment
feedback

I quite like GhostDoc

GhostDoc is a free add-in for Visual Studio that automatically generates XML documentation comments for C#. Either by using existing documentation inherited from base classes or implemented interfaces, or by deducing comments from name and type of e.g. methods, properties or parameters.

Basically it generates the /// comments above the methods, class, etc for you. They're not perfect but provide a good starting point.

link|improve this answer
11  
I really disliked GhostDoc because it (can) serve as an excuse not to do the documentation correctly. – ullmark May 6 '09 at 11:16
14  
@ullmark - public void DataBind() - /// <summary>Datas the bind.</summary> – Chris S Jun 1 '10 at 9:13
6  
@Chris: To be fair, that method should probably be named BindData(). – Mark Nov 18 '10 at 21:04
16  
@Mark not if you're Yoda. – m4tt1mus Jun 16 '11 at 22:06
4  
Worse, it makes seem like your doing documentation when you are not. Even forward, the doc comment Binds Data on public void BindData() doesn't exactly give any new information does it? – George Mauer Aug 25 '11 at 17:01
feedback

Now (over a year later) there is NDoc3. Very easy to use.

link|improve this answer
3  
Just tried it. Failed hard with .NET 4. – Mark Nov 18 '10 at 21:17
Looking at the bug list, it still doesn't support generics correctly. And it hasn't been updated for a few months. – Barry Jones Sep 21 '11 at 15:22
feedback

As others have said, if you want to generate the comments in your code you should have a look at GhostDoc.

As for outputting the comments into something nice. I recently started an open-source project for generating documentation for .Net apps, as an alternative to Sandcastle. I don't want to get into the hows or whys I've done such a thing here, but you might want to check it out. It's early days yet, but it's making steady progress.

Docu - simple documentation done simply

link|improve this answer
feedback

As per Ray's suggestion, GhostDoc is handy, although it can lead to boilerplate docs without substance if developers are lazy.

As for publishing your docs...forget NDoc, it's a dead project.

Sandcastle is actively supported by Microsoft. You document using standard C# tags. It has multiple output formats and plenty of flexibility. Just give whatever box you build docs on plenty of RAM.

I recommend SHFB to make life easy with Sandcastle. Modeled after NDoc and works via GUI or command line.

link|improve this answer
feedback

GhostDoc is great, but I did have a rant about adding comments some time ago. If you are going to add comments, make them usefull!.

link|improve this answer
feedback

Live Documenter is a free documentation tool from The Box Software.

link|improve this answer
feedback

Which command will cause an XML file to be generated from documentation comments?

Ans- csc MyClass.cs /doc:MyClass.xml.

To build the XML Documentation sample within Visual Studio In Solution Explorer, right-click the project and click Properties. Open the Configuration Properties folder and click Build. Set the XML Documentation File property to XMLsample.xml. On the Build menu, click Build. The XML output file will be in the debug directory.

To build the XML Documentation sample from the Command Line To generate the sample XML documentation, type the following at the command prompt:csc XMLsample.cs /doc:XMLsample.xm

link|improve this answer
feedback

Doxygen has been suggested in here. Quoting Matt:

"Doxygen generates javadoc style documentation, although it looks like it's primarily intended to generate documentation from custom markup within your comments. Evidently, Doxygen also supports C# XML Comments... Anyway, I recommend it. It's easy to use, supports multiple languages and also generates class diagrams for you."

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.