編譯器錯誤 CS1609
修飾詞不能置於事件存取子宣告中
修飾詞只能置於事件宣告中,不能置於事件存取子宣告中。 如需詳細資訊,請參閱 Using Properties。
下列範例會產生 CS1609。
// CS1609.cs
// compile with: /target:library
delegate int Del();
class A
{
public event Del MyEvent
{
private add {} // CS1609
// try the following line instead
// add {}
remove {}
}
}