C# BackgroundWorker RunWorkerCompleted Event
Posted
by Jim Fell
on Stack Overflow
See other posts from Stack Overflow
or by Jim Fell
Published on 2010-05-10T22:12:59Z
Indexed on
2010/05/10
22:24 UTC
Read the original article
Hit count: 202
My C# application has several background workers. Sometimes one background worker will fire off another. When the first background worker completes and the RunWorkerCompleted
event is fired, on which thread will that event fire, the UI or the first background worker from which RunWorkerAsync
was called? I am using Microsoft Visual C# 2008 Express Edition. Any thoughts or suggestions you may have would be appreciated. Thanks.
© Stack Overflow or respective owner