編譯器警告 (層級 2) CS1711
更新:2007 年 11 月
錯誤訊息
'type' 上的 XML 註解有 'parameter' 的 typeparam 標記,但是沒有這個名稱的型別參數
泛型型別的文件包含名稱錯誤的型別參數的標記。
範例
下列程式碼會產生警告 CS1711:
// cs1711.cs
// compile with: /doc:cs1711.xml
// CS1711 expected
using System;
///<typeparam name="WrongName">can be an int</typeparam>
class CMain
{
public static void Main() { }
}