Compiler Warning (level 1) CS1723
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>
{
}