閱讀英文

共用方式為


編譯器錯誤 CS0531

'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()  
      {  
      }  
   }  
}