WF4中使用委托的原因是什么?
为什么 WF4 使用这种模式(通过委托回调)?
app.Idle = delegate(WorkflowApplicationIdleEventArgs o)
{
syncEvent.Set();
};
Why does WF4 use this pattern (callbacks via delegates)?
app.Idle = delegate(WorkflowApplicationIdleEventArgs o)
{
syncEvent.Set();
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是匿名方法。
它比编写单独的方法更容易,并且它允许您访问
syncEvent
局部变量,而无需编写带有字段的单独类(请参阅我的博客了解更多信息)。This is an anonymous method.
It's easier than writing a separate method, and it allows you to access the
syncEvent
local variable without writing a separate class with a field (see my blog for more information).