is there anyway to sleep the some particularthread
by name or some any other source
in case I've two threads
Thread call = new Thread(() => open_page(txtbx_1.Text));
call.Start();
Thread call_2nd = new Thread(() => open_page(txtbx_1.Text));
call_2nd.Start();
I want to sleep call
and call_2nd
for at least 15 minutes(but don't want to sleep
the main Thread
.
Thanks