コード例 #1
0
ファイル: Driver.cs プロジェクト: steve1998/F1-Telemetry
 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));
 }