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?
|
|
|
|
|
|
|
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.
Another useful helper is Ghostdoc that can generate a help template on clicking a shortcut like Ctrl+Shift+D in Visual Studio. |
||||||||
|
|
|
what you probably need is Sandcastle. |
||||||||||
|
|
|
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. |
||||
|
|
|
|
||
|
|
|
Use Sandcastle in conjunction with GhostDoc, which is a nice VS addin to make it easy to comment and document.
|
||
|
|
|
|
An alternative to GhostDoc is my AtomineerUtils addin. It's also free, but much more powerful, flexible and configurable. |
||
|
|
|
|
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. |
||
|
