編譯器錯誤 CS0539
在明確介面宣告中的 'member' 不是介面成員
嘗試明確宣告不存在的 介面 成員。 您應該刪除或變更宣告,讓它參考有效的介面成員。
下列範例會產生 CS0539:
// CS0539.cs
namespace x
{
interface I
{
void m();
}
public class clx : I
{
void I.x() // CS0539
{
}
public static int Main()
{
return 0;
}
}
}