This is a fairly simple question, but I couldn't find an answer on Google, so here I am.
I am trying to access a thread once it has been created within Visual Basic .NET.
Dim T As New Thread(New ThreadStart(AddressOf RemoteThread))
T.Name = "Helloworld"
T.Start()
My question is, how do I access the thread "Helloworld" once it is started using the above code?