編譯器警告 (層級 1) CS1581
更新:2007 年 11 月
錯誤訊息
XML 註解 cref 屬性的傳回型別無效
嘗試參考某個方法時,編譯器偵測到傳回型別無效的錯誤。
範例
下列範例會產生 CS1581:
// CS1581.cs
// compile with: /W:1 /doc:x.xml
/// <summary>help text</summary>
public class MyClass
{
/// <summary>help text</summary>
public static void Main()
{
}
/// <summary>help text</summary>
public static explicit operator int(MyClass f)
{
return 0;
}
}
/// <seealso cref="MyClass.explicit operator intt(MyClass)"/> // CS1581
// try the following line instead
// /// <seealso cref="MyClass.explicit operator int(MyClass)"/>
public class MyClass2
{
}