更新:2007 年 11 月

错误消息

“param”上的 XML 注释具有引用类型参数的 cref 属性“attribute”

此错误由引用类型参数的 XML 注释生成。

示例

下面的示例生成 CS1723。

 复制代码
// CS1723.cs
// compile with: /t:library /doc:filename.XML
///<summary>A generic list class.</summary>
///<see cref="T" />   // CS1723
// To resolve comment the previous line.
public class List<T> 
{
}