Threads
-
I don't know how to use Threads in C#. I want to check if a website is loaded or not. If not loaded, wait for 3 secs and check again. If still not loaded do something. Please help me with some pointers. Thanks in advance :) Vishal...
-
I don't know how to use Threads in C#. I want to check if a website is loaded or not. If not loaded, wait for 3 secs and check again. If still not loaded do something. Please help me with some pointers. Thanks in advance :) Vishal...
Look for the
Thread
class in theSystem.Threading
namespace. Creating a thread is as simple as instantiating a newThread
instance and callingStart
on it. You might also want to look into theBeginInvoke
method, which you can call on any delegate. Regards Senthil _____________________________ My Blog | My Articles | WinMacro