編譯器錯誤 CS0550
更新:2007 年 11 月
錯誤訊息
'accessor' 加入了在介面成員 'property' 中找不到的存取子
衍生類別中的屬性 (Property) 實作包含了未指定於基底介面的存取子。
如需詳細資訊,請參閱使用屬性 (C# 程式設計手冊)。
範例
下列範例會產生 CS0550。
// 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() {}
}
}