Reputation:
I'd like my background worker to report progress for both individual tasks and the total progress. Any suggestions how i'd get multiple values over to backgroundworker_ProgressChanged?
Thanks
Upvotes: 0
Views: 144
Reputation: 40736
The userState
object of the ReportProgress
method could be used for passing arbitrary objects to the ProgressChanged
event.
Upvotes: 5