共用方式為


編譯器錯誤 CS0531

更新:2007 年 11 月

錯誤訊息

'member': 介面成員不能有定義

介面中所宣告的方法必須在繼承自該方法的類別內實作,而不是在介面本身中實作。

下列範例會產生 CS0531:

// CS0531.cs
namespace x
{
   public interface clx
   {
      int xclx()   // CS0531, cannot define xclx
      // Try the following declaration instead:
      // int xclx();
      {
         return 0;
      }
   }

   public class cly
   {
      public static void Main()
      {
      }
   }
}