count down timer in C#
I need a count down timer in C#. Can somebody please help me to create
one. The requirement is:
Set Timer = 5 minutes;
for (i=0;i<100;i++)
{
StartProcess();
if(TimeLeft==0)
killProcess();
}
This process is running for specified iterations, but should be killed if
reaches timeout. Otherwise continue with specified iterations.
No comments:
Post a Comment