up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to create a new thread and send multiple parameters as well as a delegate to report back.

In VB8 I always hate to do this because it requires either introducing a new class/structure or a delegate.

Is there any better way to do this in VB9 ?

I'm looking for a solution something like this :

   Dim Th As New Thread(AddressOf DoStuff)
   Th.Start(param1, param2, AddressOf ReportStatus)

I'm not good with LINQ and Lambda, so I'm hopping that someone will show me some cool trick to do this.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You could pass an anonymous function to the thread constructor.

Dim Th = New Thread(Sub() DoStuff(param1, param2, AddressOf ReportStatus))

but unfortunately there are no anonymous subs in VB9 (they will be in VB10 - In C# this should already work).

link|improve this answer
OK, I thought it was possible in VB9, shame on MS – dr. evil May 19 '09 at 19:18
Shame on MS? It's people like you that give MS a bad name. Microsoft has consistantly improved the VB and C# languages with every single release. Shame on YOU for not giving credit where credit is deserved. – Boo May 20 '09 at 3:30
feedback

Nope. Nothing new in VB9.

link|improve this answer
feedback

Maybe you're already familiar with this, but depending on your application, using ThreadPool can be useful and easy. I don't know much about sending parameters with ThreadPool.QueueUserWorkItem, but this page seems to give a good tutorial involving lambda expressions and anonymous types. It's in C# but I'm sure it would translate to VB.

link|improve this answer
Actually I'm trying to something similar but that page is in C# (I can read C# and convert except Linq and lambad :) ). Also I'm not sure how much of it can be applied to VB.NET – dr. evil May 19 '09 at 19:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.