i have a timer that calls its even handler method every 30 seconds. but i want to initialy call this method. the signature of the event handler method is
void TimerElapsed_GenerateRunTimes(object sender, System.Timers.ElapsedEventArgs e)
so how should i call it right? i can do the following
TimerElapsed_GenerateRunTimes(timerGenerateRunTimes,null);
but i am not sure this is the right way to do it besides that way the event argument e will be null