如何将委托添加到托管 c++ 中的事件2010年?
我在 c# 中有以下代码
public class Shedluer
{
public delegate void TaskCompletedDelegate(ulong taskId);
public static event TaskCompletedDelegate OnTaskCompleted;
}
这是我尝试在 c++.net 中使用它的方法:
shedluer->OnTaskCompleted+=gcnew Shedluer::TaskCompletedDelegate(OnTaskFinished);
其中 OnTaskFinished 是在 ref 类中声明的非静态方法。
我看过很多 c++.net 2007 的示例,但这些示例无法在 vs 2010 中编译。
如何在托管 c++ 2010 中向事件添加委托?
I've got following code in c#
public class Shedluer
{
public delegate void TaskCompletedDelegate(ulong taskId);
public static event TaskCompletedDelegate OnTaskCompleted;
}
Here's how I'm trying to use it in c++.net:
shedluer->OnTaskCompleted+=gcnew Shedluer::TaskCompletedDelegate(OnTaskFinished);
where OnTaskFinished is a non-static method declared inside a ref class.
I've seen a bunch of examples for c++.net 2007, but those won't compile in vs 2010.
How do I add a delegate to event in managed c++ 2010?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设
OnTaskFinished
在当前类中,并且该 ref 类的类型为MyClass
。在这种情况下,你会写:Supposing the
OnTaskFinished
is in the current class, and that ref class is of typeMyClass
. In that case, you'd write: