在 C++/ CLI 中使用 .NET (3.5) 任务并行库
好吧,我下载了 Reactive Extensions for NET 3.5,以便在 Visual Studio 2008 中使用 c++/cli 来使用它...
但是所有任务并行库示例都是用 C# 编写的...我什至无法弄清楚将简单的 C# 语句转换为 C++ / CLI...
// use an Action delegate and a named method
Task task1 = new Task(new Action(printMessage));
// use a anonymous delegate
Task task2 = new Task(delegate {
printMessage();
});
我如何在 C++/CLI 中编写这些语句?
祝愿
Well, I download Reactive Extensions for NET 3.5 to use it in visual studio 2008 with c++/cli...
But all Task Parallel Library examples are in C#...I can not able to figure out EVEN converting that simple C# statements into C++/ CLI...
// use an Action delegate and a named method
Task task1 = new Task(new Action(printMessage));
// use a anonymous delegate
Task task2 = new Task(delegate {
printMessage();
});
How can i write those statements in C++/CLI?
Best Wishes
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)