Otávio Décio
Otávio Décio

Reputation: 74270

C# Concurrency and Agents

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

Answers (1)

Tim S.
Tim S.

Reputation: 56536

You might be looking for the new (beta) async keyword. http://msdn.microsoft.com/en-us/vstudio/gg316360

Upvotes: 2

Related Questions