Exemplo n.º 1
0
        public void Start()
        {
            State = TimerState.Running;

            Started.Raise(this, EventArgs.Empty);
            OnStarted();
        }
Exemplo n.º 2
0
 public void Start()
 {
     State = TimerState.Started;
     Started.Raise(this, EventArgs.Empty);
 }
Exemplo n.º 3
0
 protected virtual void OnStarted(CarStartedEventArgs e)
 {
     Started.Raise(this, e);
 }