更新:2007 年 11 月
<see cref="member"/> |
参数
备注
<see> 标记使您得以从文本内指定链接。使用
使用
有关使用 <see> 的示例,请参见
示例
下面的示例演示如何对泛型类型进行 cref 引用。
C# | 复制代码 |
---|---|
// compile with: /doc:DocFileName.xml // the following cref shows how to specify the reference, such that, // the compiler will resolve the reference /// <summary cref="C{T}"> /// </summary> class A { } // 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> class B { } /// <summary cref="A"> /// </summary> /// <typeparam name="T"></typeparam> class C<T> { } |