Пример #1
0
 protected virtual void OnNewLap(NewLapEventArgs e)
 {
     NewLap?.Invoke(this, e);
 }
Пример #2
0
 private void OnNewLap(int lastLap, int currentLap)
 {
     NewLap?.Invoke(this, new NewLapEventArgs(lastLap, currentLap));
 }