46

Frog という名前のクラスがあるとします。次のようになります。

public class Frog
{
     public int Location { get; set; }
     public int JumpCount { get; set; }


     public void OnJump()
     {
         JumpCount++;
     }

}

次の 2 点についてサポートが必要です。

  1. クラス定義で Jump という名前のイベントを作成したいと考えています。
  2. Frog クラスのインスタンスを作成し、次に Frog がジャンプしたときに呼び出される別のメソッドを作成したいと考えています。
4

2 に答える 2

69
public event EventHandler Jump;
public void OnJump()
{
    EventHandler handler = Jump;
    if (null != handler) handler(this, EventArgs.Empty);
}

それから

Frog frog = new Frog();
frog.Jump += new EventHandler(yourMethod);

private void yourMethod(object s, EventArgs e)
{
     Console.WriteLine("Frog has Jumped!");
}
于 2008-09-17T16:44:28.727 に答える