I used one timer control in my C#.net project,timer interval is 5 second. In timer_tick method,i call another calculation method that will take 5 minute to complete. My question is timer_tick method will be call in every 5 second or it will wait previous process finish? In my testing,i write the current time to output window before calling calculation method. So,I found it always waiting for previous process finish.If it is correct,So,what is timer interval for? My testing code is like this,
private void timer1_Tick(object sender, EventArgs e)
{
Console.WriteLine(DateTime.Now.ToString());
CalculationMethod();
}
Regards,
Indi