Reputation: 74270
Is there anything in C# similar to the new Microsoft C++11 Concurrency library that allows to build asynchronous agents (for example as it is done here) ?
Upvotes: 9
Views: 484
Reputation: 56536
You might be looking for the new (beta) async
keyword. http://msdn.microsoft.com/en-us/vstudio/gg316360
Upvotes: 2