Start() private method

private Start ( ) : void
return void
Ejemplo n.º 1
0
 public void AddEvent(TimerEvent evt)
 {
     lock (_timerEvents)
     {
         _timerEvents.Add(evt);
         if (Started)
         {
             evt.Start();
         }
     }
 }
Ejemplo n.º 2
0
 public void AddEvent(TimerEvent evt)
 {
     lock (_timerEvents)
     {
         _timerEvents.Add(evt);
         if (Started)
         {
             evt.Start();
         }
     }
 }