C# でイベント ハンドラーを使用する方法を学ぼうとしていますが、次のコードで handler(this, e) が何をするのかわかりません。
public event EventHandler ThresholdReached;
protected virtual void OnThresholdReached(EventArgs e)
{
EventHandler handler = ThresholdReached;
if (handler != null)
{
handler(this, e);
}
}
イベント (e) でイベント ハンドラー メソッド (this) を呼び出そうとしていませんか?