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?
|
feedback
|
|
You can start a comment with | |||
|
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. | |||||||||||||||
feedback
|
|
I quite like GhostDoc
Basically it generates the /// comments above the methods, class, etc for you. They're not perfect but provide a good starting point. | |||||||||||||||||||||
feedback
|
|
Now (over a year later) there is NDoc3. Very easy to use. | |||||||
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. | |||
|
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. | |||
|
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!. | ||||
|
feedback
|
|
Live Documenter is a free documentation tool from The Box Software. | |||
|
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 | |||
|
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." | |||
|
feedback
|