閱讀英文

共用方式為


編譯器錯誤 CS0550

'accessor' 加入了在介面成員 'property' 中找不到的存取子

在衍生類別中,屬性的實作包含未在基底介面中指定的存取子。

如需詳細資訊,請參閱 Using Properties

範例

下列範例會產生 CS0550:

C#
// CS0550.cs  
namespace x  
{  
   interface ii  
   {  
      int i  
      {  
         get;  
         // add the following accessor to resolve this CS0550  
         // set;  
      }  
   }  
  
   public class a : ii  
   {  
      int ii.i  
      {  
         get  
         {  
            return 0;  
         }  
         set {}   // CS0550  no set in interface  
      }  
  
      public static void Main() {}  
   }  
}