vote up 7 vote down star

Hi, I'm moving to C# from Java and wanted to know what the most widely used documentation tool is? What is the equivalent of Javadoc in C#-land?

flag

8 Answers

vote up 8 vote down check

The default documentation format is the /// xml documentation you see in most sample code. It is parsed by the C# compiler, which creates a .xml file containing the exact location and the custom Xml. Visual Studio can use this xml for intellisense and there are a few tools that can turn this xml in pretty html.

  • NDoc was the most common tool in the past, but lacks .Net 2.0 support.
  • SandCastle is a more modern variant and is now used by Microsoft to generate the MSDN help.

Another useful helper is Ghostdoc that can generate a help template on clicking a shortcut like Ctrl+Shift+D in Visual Studio.

link|flag
1  
What happened to NDoc? – Nosrama Jul 30 at 10:06
1  
en.wikipedia.org/wiki/NDoc says that the primary developer stopped 'due to lack of funding and threats against him, and that he is willing to hand over administration of the project' – Bert Huijben Jul 30 at 10:11
vote up 1 vote down

SandCastle

link|flag
vote up 1 vote down

what you probably need is Sandcastle.

link|flag
Dup of stackoverflow.com/questions/1205621/… – Ruben Bartelink Jul 30 at 10:02
yeah he posted it like 3 seconds before i did :) – Mladen Prajdic Jul 30 at 10:09
Yes, and the same happens to many Fastest Guns In The West, me included. When it happens to me, I delete mine unless I feel I'm adding something deeper than the very fastest gun in the west was saying. – Ruben Bartelink Jul 30 at 10:23
Given a person should not knowingly duplicate another answer. Also if an answer is duplicated within a reasonable time scale that should probably be removed as well. But if 4 different people give the same answer within a minute of each other, I believe it gives the original questioner more information and a higher degree of 'question answered' belief than 1 answer upvoted 4 times, therefore the answer should remain. – Paul Jul 31 at 4:29
@Paul: That doesnt make much sense to me. Is code clearer if you just copy and paste 4 copies of something than have everyone go to the effort of consolidating stuff into functions? I have no problem trusting votes on da interwebs. I wouldnt mind if there were subtle differences between the two posts, but in this case we have "what you probably need is" which as a questioner would make me less certain as to whether this is appropriate for me and why. But its an opinion thing, and one more than one occasion I have deleted FGITW dups - even upvoted ones in some cases. – Ruben Bartelink Jul 31 at 8:11
show 2 more comments
vote up 9 vote down

In .NET, API documentation is built-in and an XML-file is automatically generated from the source code (via XML-comments). This documentation is used by Visual Studio for the Intellisense documentation. You can use a tool like Sandcastle to convert these XML-files to CHM, or HTML, or a different format.

link|flag
2  
+1 for Sandcastle, and I'd like to add that the "sandcastle help file builder" (SHFB) that adds a GUI to it is indispensable: codeplex.com/SHFB – KristoferA Jul 30 at 10:11
vote up 4 vote down

Use Sandcastle in conjunction with GhostDoc, which is a nice VS addin to make it easy to comment and document.

"GhostDoc is a free Visual Studio extension that automatically generates XML documentation comments for methods and properties based on their type, parameters, name, and other contextual information.

When generating documentation for class derived from a base class or for interface implementation (e.g. .NET Framework or your custom framework), GhostDoc will use the documentation that Microsoft or the framework vendor has already written for the base class or interface."

link|flag
vote up 0 vote down

An alternative to GhostDoc is my AtomineerUtils addin. It's also free, but much more powerful, flexible and configurable.

link|flag
vote up 1 vote down

GhostDoc to easily create the comments. (I try not to abuse it though)

Doxygen to create a set of html documentation files. Doxygen is great because it can map out the relationship between classes such as which class uses another and which class inherits from another (C++ example). For the most part Doxygen was created for C++ but it can handle C# comments as well. It's handy for exploring the architecture of foreign code, assuming they bothered to put in decent documentation.

link|flag
I have found doxygen to be an excellent alternative to Sandcastle for C# code. It's also at least one order of magnitude faster than sandcastle. – Todd Stout Sep 25 at 17:06

Your Answer

Get an OpenID
or

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