Hello friends,
I had done some questions regarding function call.
I had done an console application that can run a particular set of code every minute.
For that i used
System.Threading.Thread.Sleep(60000);
That worked well too.
But now i stuck in another problem.
Now I dont wanna use the above code.Because of the reason the thread.sleep() makes the entire application to sleep for a minute. But I am having a code that must be executed in the mean time.
Any suggestions or help?
TIA...