如何将委托添加到托管 c++ 中的事件2010年?

发布于 2024-12-29 13:24:34 字数 470 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

所谓喜欢 2025-01-05 13:24:34

假设 OnTaskFinished 在当前类中,并且该 ref 类的类型为 MyClass。在这种情况下,你会写:

shedluer->OnTaskCompleted += gcnew Shedluer::TaskCompletedDelegate(this, &MyClass::OnTaskFinished);

Supposing the OnTaskFinished is in the current class, and that ref class is of type MyClass. In that case, you'd write:

shedluer->OnTaskCompleted += gcnew Shedluer::TaskCompletedDelegate(this, &MyClass::OnTaskFinished);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文