简体   繁体   中英

How do I make xml documentation in Visual Studio 2012

像Eclipse一样,如何在Visual Studio 2012中生成C#Web应用程序的文档?

在Visual Studio中,转到“工具”菜单->扩展管理器...,然后在扩展管理器中单击在线库(在左侧),然后在右上角的搜索框中键入文本... ghostdoc这是一个非常不错的文档帮助器。

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/

Please inspect this post: Free Visual Studio XML Documentation Authoring Tool

They advice sandcastle tool.

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/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM