I am looking for an example of how to do the following in VB.net with Parallel Extensions.
Dim T As Thread = New Thread(AddressOf functiontodowork)
T1.Start(InputValueforWork)
Where I'm getting stuck is on how to pass into the task my parameter InputValueforWork
Dim T As Tasks.Task = Tasks.Task.Create(AddressOf functiontodowork)
Any suggests and possibly a coding example would be welcome.
Andrew