I have a timer with interval 3600000 which can be translated into an hour, so when I do
timer.Start()
it will it will execute code below in every hour starting from next hour
private void timer_Tick(object sender, EventArgs e)
{
.....
}
but what if I want it to be also executed the second I call timer.Start() and then every hour after?