Hi All,
I have created a thread.
Code:
Dim myThread As Thread = New Thread(AddressOf DoSomeStuff)
myThread . IsBackground = True
myThread . Start()
I have some questions
A) When the sub procedure DoSomeStuff has finished does that mean the thread has terminated and been "garbage collected", "disposed of" ??
B) Whats the difference between IsBackground enabled or disabled ??
Cheers