Expand Minimize
0 out of 1 rated this helpful - Rate this topic

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.

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> 
{
}
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.