views:

993

answers:

3

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?

+2  A: 

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.

Reed Copsey
+1  A: 

There is implementation of BackgroundWorker for CF: http://www.danielmoth.com/Blog/2004/12/backgroundworker-sample.html

Filip Navara
A: 

Here is an implementation that was created using Reflector. You could use Reflector to check out various implementations within the .NET framework

SwDevMan81