Would it not be nice to be able to start a thread like this.
Sub DoStuff()
Using MyThead = New Threading.Thread()
'Do stuff on MyThread.
End Using
End Sub
It is much less code to write and looks nicer than:
Sub DoStuff()
Dim MyThread As New Threading.Thread(AddressOf DoStuffThread)
MyThread.Start()
End Sub
Sub DoStuffThread()
'Do Stuff
End Sub