Backgroundworker doesn't find a symbol

68 Views Asked by At

Please I cant find a symbol BackgroundWorker in my application Net 3.5 (Smart device). I find it just in WPF.

I tried to download but I did not find a link

using System.ComponentModel;
<p style="red">BackgroundWorker</p> 
myWorker = new <p style="red">BackgroundWorker</p>();
1

There are 1 best solutions below

1
On BEST ANSWER

The most common option is to use ThreadPool.QueueUserWorkItem instead of a BackgroundWorker, although there are other options available as well.

You can also use Microsoft .NET Compact Framework Background Processing Techniques for Performing background processing has many implications and requires very careful design. This paper offers some suggestions for making the best use of background processing and introduces many of the issues that must be addressed.