Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 258 Bytes

File metadata and controls

22 lines (18 loc) · 258 Bytes

Timers

using System.Timers;
public Timer timer;
timer = new Timer(10);
timer.Elapsed += new ElapsedEventHandler(TimerTick);
timer.Start();
private void TimerTick(object source, ElapsedEventArgs e)
{
  // stuff
}