设置 RunWorkerCompleted 值
如果我有一个后台工作人员在其 do work 中执行一些任务,
String val= getVal("Val");
byte[] b = (byte[])e.Argument;
b = getData.FromPlace(val);
我如何将 b 的 vakue 传递给 runworkercompleted 方法?
If i have a background worker that does some tasks in its do work
String val= getVal("Val");
byte[] b = (byte[])e.Argument;
b = getData.FromPlace(val);
How do i pass the vakue of b to the runworkercompleted method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用闭包,
也可以在事件参数对象上使用 return Result 属性。我认为这种方式提供了更多的灵活性。
You could use closure
You could also use return Result property on the event args object. I think this way gives more flexibility.
您可以使用实例变量。将声明放置在
DoWork
事件定义上方。You can use an instance variable. Place the declaration above the
DoWork
event definition.