共用方式為


編譯器警告 (層級 1) CS1723

更新: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> 
{
}