hi guys..
how can i destroy a running thread?
i mean the thread that i create using System.Thrading
it will not be terminated if i use:
tempThread.Abort()
!!!!!!!!!
any help?
:confused:
thanks..
Printable View
hi guys..
how can i destroy a running thread?
i mean the thread that i create using System.Thrading
it will not be terminated if i use:
tempThread.Abort()
!!!!!!!!!
any help?
:confused:
thanks..
try with suspend property
tempThread.Suspend
Why not ? . Abort method should abort the thread which throws an AbortThreadException .Quote:
Originally posted by VB-Sultan
hi guys..
how can i destroy a running thread?
i mean the thread that i create using System.Thrading
it will not be terminated if i use:
tempThread.Abort()