共用方式為


編譯器錯誤 CS0539

更新:2007 年 11 月

錯誤訊息

在明確介面宣告中的 'member' 不是介面成員

嘗試明確宣告不存在的介面成員。您應刪除該宣告,或是加以變更,使其參考有效的介面成員。

下列範例會產生 CS0539:

// CS0539.cs
namespace x
{
   interface I
   {
      void m();
   }

   public class clx : I
   {
      void I.x()   // CS0539
      {
      }

      public static int Main()
      {
         return 0;
      }
   }
}