Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
XML comment on 'param' has cref attribute 'attribute' that refers to a type parameter
This error is generated by an XML comment that refers to a type parameter.
Example
The following example generates 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>
{
}