I want to use something similar to the BackgroundWorker on mobile devices. Sadly it is not available in the compact framework.
What can I use instead?
|
1
|
I want to use something similar to the BackgroundWorker on mobile devices. Sadly it is not available in the compact framework. What can I use instead?
|
||
|
|
|
|
There is an MSDN site discussing the Background Processing Techniques on the CF. The most common option is to use ThreadPool.QueueUserWorkItem instead of a BackgroundWorker, although there are other options. |
||
|
|
|
|
There is implementation of BackgroundWorker for CF: http://www.danielmoth.com/Blog/2004/12/backgroundworker-sample.html |
||
|
|
|
|
Here is an implementation that was created using Reflector. You could use Reflector to check out various implementations within the .NET framework |
||
|
|