Meta
Categories
Category Archives: c#
System.ComponentModel.BackgroundWorker
Overview Executes an operation on a separate, dedicated thread. Good for long running operations such as download and database transactions. Implementation Implement operations in the DoWork event hanlder Call RunWorkerAsync to start the operation Receive notifications (update UI etc) in the … Continue reading
Posted in c#
Leave a comment