C++ Programmer's Cookbook

{C++ 基础} {C++ 高级} {C#界面,C++核心算法} {设计模式} {C#基础}

XML Comments in C#

Author: James Foster Date Posted: 09/02/2001 .NET Version: 1.0.3705
Many of you have heard of JavaDoc, a feature of Java that automatically generates HTML documentation for your code. C#, and the C# compiler, is capable of a similar function, yet produces XML instead of directly producing HTML. This makes the documentation much more flexible.

Commenting Syntax
To use the XML commenting features of C#, you begin by commenting your source code using the special comment syntax, /// (three slashes). After the slashes you use one of the predefined tags for documentation comments, or embed your own. Your custom xml tags will carry over into the result XML documentation.

Predefined TagUsed for
<c>a way to indicate that text within a description should be marked as code
<code>a way to indicate multiple lines as code
<example>lets you specify an example of how to use a method or other library member
<exception>lets you document an exception class
<include>lets you refer to comments in another file, using XPath syntax, that describe the types and members in your source code.
<list>Used to insert a list into the documentation file
<para>Used to insert a paragraph into the documentation file
<param>Describes a parameter
<paramref>gives you a way to indicate that a word is a parameter
<permission>lets you document access permissions
<remarks>where you can specify overview information about the type
<returns>describe the return value of a method
<see>lets you specify a link
<seealso>lets you specify the text that you might want to appear in a See Also section
<summary>used for a general description
<value>lets you describe a property
Example
The following example adds comments to our introductory HelloWorld console application.
using System;

namespace HelloWorld
{
    /// <summary>
    /// Sample Hello World in C#
    /// </summary>
    publicclass HelloWorld
    {
        /// <summary>
        /// Console Application Entry Point
        /// <param name="args">Command Line Arguments</param>
        /// <returns>Status code of 0 on successful run</returns>
        /// </summary>
        publicstaticint Main(string[]args)
        {
            System.Console.WriteLine("HelloWorld");
            stringname= System.Console.ReadLine();

            return(0);
        }
    }
}

To get the resulting XML Documentation file, we call the csc compiler with the /doc option.

csc /doc:HelloWorld.xml helloworld.cs 或修改工程的property.build.output.xmldocument.(在2005中)


HTML Web Pages
You may be asking yourself: how do I get nicely formatted web pages? Well, you could write your own XSL to transform the XML documentation file, or you could use Visual Studio.NET. By using the Tools -> Build Comment Web Pages option, you can get a set of html files detailing your entire project or solution. Here is a screen shot by building web pages for our HelloWorld example:


But if you want to create easy-to-use, helpful, cross-referenced and attractive documentation, then I can strongly recommend the free, open source tool NDoc. The screenshot below is taken from a compiled help file produced from NDoc and is an example of the quality it can produce.



可以把xml制作chm的工具
NANT  下载:http://nant.sourceforge.net/
NDOC  下载:http://ndoc.sourceforge.net/

posted on 2006-04-13 14:02 梦在天涯 阅读(818) 评论(1)  编辑 收藏 引用 所属分类: C#/.NET

评论

# re: XML Comments in C# 2006-04-30 16:25 梦在天涯

很好用的啊,但是好像没有最新的支持.net 2.0的啊!  回复  更多评论   


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理


公告

EMail:itech001#126.com

导航

统计

  • 随笔 - 461
  • 文章 - 4
  • 评论 - 746
  • 引用 - 0

常用链接

随笔分类

随笔档案

收藏夹

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

积分与排名

  • 积分 - 1789452
  • 排名 - 5

最新评论

阅读排行榜