C#注释含义(XML注释)标签及其含义(一)
<c>(C#
参数
text
希望将其指示为代码的文本。
备注
<c>
使用
示例
C#
//
compile with: /dococFileName.xml
///text for class TestClass
publicclass TestClass
{
/// <summary><c>DoWork</c> is a method in the <c>TestClass</c> class.
/// </summary>
public static void DoWork(int Int1)
{
}
/// text for Main
static void Main()
{
}
}
<para>(C#
参数
content
段落文本。
备注
<para>
使用
示例
有关使用
<see>(C#
<see
参数
cref
对可以通过当前编译环境进行调用的成员或字段的引用。编译器检查给定的代码元素是否存在,并将
备注
<see>
使用
有关使用
示例
下面的示例演示如何对泛型类型进行
C#
//
compile with: /dococFileName.xml
//the following cref shows how to specify the reference, such that,
//the compiler will resolve the reference
///<summary cref="C{T}">
///</summary>
classA { }
//the following cref shows another way to specify the reference,
//such that, the compiler will resolve the reference
//<summary cref="C < T >">
//the following cref shows how to hard-code the reference
///<summary cref="T:C`1">
///</summary>
classB { }
///<summary cref="A">
///</summary>
///<typeparam name="T"></typeparam>
classC<T> { }
<code>(C#
参数
content
希望将其标记为代码的文本。
备注
<code>
使用
示例
有关如何使用
<param>(C#
<param
参数
name
方法参数名。将此名称用双引号括起来
description
参数说明。
备注
<param>
有关
使用
示例
C#
//
compile with: /dococFileName.xml
///text for class TestClass
publicclass TestClass
{
/// <param name="Int1">Used to indicate status.</param>
public static void DoWork(int Int1)
{
}
/// text for Main
static void Main()
{
}
}
<seealso>(C#
参数
cref
对可以通过当前编译环境进行调用的成员或字段的引用。编译器检查到给定代码元素存在后,将
有关如何创建对泛型类型的
备注
<seealso>
使用
示例
有关使用
<example>(C#
<example>description</example>
参数
description
代码示例的说明。
备注
使用
使用
示例
C#
//
compile with: /dococFileName.xml
///text for class TestClass
publicclass TestClass
{
/// <summary>
/// The GetZero method.
/// </summary>
/// <example> This sample shows how to call the GetZero method.
/// <code>
/// class TestClass
/// {
/// static int Main()
/// {