use ThreadPool.QueueUserWorkItem (WaitCallback, Object) to start a thread with my target method and data. Can I pass more than one data into my method? the second parameter in QueueUserWorkItem (WaitCallback, Object) can be an array?
| ||||
feedback
|
|
Here is a example of using a class so you can get strongly typed pramaters
| ||||
|
feedback
|
|
The second parameter can be an array but you're better off creating a custom class for containing your data. That way the data you pass is fully typed. | |||
|
feedback
|
|
Yes the type of the argument is System.Object so you can pass anything. http://msdn.microsoft.com/en-us/library/4yd16hza.aspx | |||
|
feedback
|
|
Just cast your state object back, which also applies for ParameterizedThreadStart:
| |||
|
feedback
|
|
All types in .NET derive from object so you can pass in anything you want to QueueUserWorkItem. Just cast it in your WaitCallback method. | |||
|
feedback
|
|
The most convenient method is to use a lambda expression:
This is the most sane way to use this API. The C# compiler will generate a class internally. This method is (virtually) as fast as using a class explicitly. | |||
|
feedback
|