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