I am trying to create a new thread and send some parameters to the delegate for the report as well.
In VB8, I always hate doing this because it requires either the introduction of a new class / structure or a delegate.
Is there a better way to do this in VB9?
I am looking for a solution like this:
Dim Th As New Thread(AddressOf DoStuff)
Th.Start(param1, param2, AddressOf ReportStatus)
I am not good at LINQ and Lambda, so I'm sure someone will show me some cool trick to do this.
source
share