컴파일러 경고(수준 1) CS1723

업데이트: 2007년 11월

오류 메시지

'param'의 XML 주석에 형식 매개 변수를 참조하는 'attribute' cref 특성이 있습니다.
XML comment on 'param' has cref attribute 'attribute' that refers to a type parameter

이 오류는 형식 매개 변수를 참조하는 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> 
{
}