コード例 #1
0
ファイル: State.cs プロジェクト: HoreaOros/POO2020
 void ap_Explosion(object sender, MEventArgs e)
 {
     Console.WriteLine("{0} received a notification of the explosion", name);
     Console.WriteLine("Core temperature: {0}", e.Temperature);
 }
コード例 #2
0
 protected virtual void OnRaiseEvent(MEventArgs e)
 {
     Explosion(this, e);
 }