私が見たほとんどのコードは、次の方法を使用してイベントの発生を宣言および呼び出します。
public class MyExample
{
public event Action MyEvent; // could be an event EventHandler<EventArgs>, too
private void OnMyEvent()
{
var handler = this.MyEvent; // copy before access (to aviod race cond.)
if (handler != null)
{
handler();
}
}
public void DoSomeThingsAndFireEvent()
{
// ... doing some things here
OnMyEvent();
}
}
ReSharperでさえ、上記の方法で呼び出しメソッドを生成します。
なぜこのようにしないのですか?
public class MyExample
{
public event Action MyEvent = delegate {}; // init here, so it's never null
public void DoSomeThingsAndFireEvent()
{
// ... doing some things here
OnMyEvent(); // save to call directly because this can't be null
}
}
誰かがこれをしない理由を説明できますか?(賛否両論)