There are some ways to send number of parameters to the new created thread.
1. Creating a new instance of a class, and using that instance to store the information
2. Using ThreadPool to send parameters
3. Calling a delegate asynchronously
More detailed information can be found at: http://www.yoda.arachsys.com/csharp/threadstart.html
1. Creating a new instance of a class, and using that instance to store the information
2. Using ThreadPool to send parameters
3. Calling a delegate asynchronously
More detailed information can be found at: http://www.yoda.arachsys.com/csharp/threadstart.html
Comments