Can you let me know how I can have more multiple timers in a program
I have for example the code below How can I run one set of code if Timer1 is called and another for Timer?
timer1.Elapsed += OnTimedEvent; //Wait a period beforestatring again
timer1.Start();
timer.Elapsed += OnTimedEvent; //Wait a period beforestatring again
timer.Start();
private void OnTimedEvent(Object source, ElapsedEventArgs e)
{
}

Comment