I
IcedCrow
I have code:
Dim th as new threading.thread(addressof MyMethod)
th.start()
If th.threadstate = threadstate.running then
th.priority = threading.threadpriority.abovenormal
End If
My question is... wouldn't the thread always be running
and the if statement always fire off with setting the
priority?
Dim th as new threading.thread(addressof MyMethod)
th.start()
If th.threadstate = threadstate.running then
th.priority = threading.threadpriority.abovenormal
End If
My question is... wouldn't the thread always be running
and the if statement always fire off with setting the
priority?