Reputation: 1696
How can I generate documentation of my C# web application in Visual Studio 2012, like Eclipse does?
Upvotes: 5
Views: 11692
Reputation: 9
You can use ghostdoc for XML documentation.
http://submain.com/products/ghostdoc.aspx
You can use sandcastle to create a Help document
http://sandcastle.codeplex.com/
Upvotes: 0
Reputation: 9725
In Visual Studio go to tools menu -> extension manager... then in extension manager click on online gallery (on the left), then type in the top right search box the text... ghostdoc It's a very nice document helper.
Upvotes: 4
Reputation: 6159
You can comment your code using xml comments
/// <summary>
/// This class performs an important function.
/// </summary>
and then generate xml documentation after compiling the /doc. Here is the source: http://msdn.microsoft.com/en-us/library/b2s063f7.aspx
also I advixe you to use Sandcastle with its Help File Builder which is a very powerful tool: http://shfb.codeplex.com/
Upvotes: 1
Reputation: 53
Please inspect this post: Free Visual Studio XML Documentation Authoring Tool
They advice sandcastle tool.
Upvotes: 0