Avviso del compilatore (livello 1) CS1723

Aggiornamento: novembre 2007

Messaggio di errore

Il commento XML in "param" contiene l'attributo cref "attribute" che fa riferimento a un parametro di tipo
XML comment on 'param' has cref attribute 'attribute' that refers to a type parameter

Questo errore viene generato da un commento XML che fa riferimento a un parametro di tipo.

Esempio

Nell'esempio riportato di seguito viene generato l'errore 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> 
{
}