vote up 1 vote down star
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?

flag

40% accept rate

3 Answers

vote up 2 vote down check

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.

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.