I\'ve recently moved back to C# from being in Objective-C land, and the async/await keywords in C# 5 look cool. But I\'m still trying to get a handle on the proper syntax.>
The return type of the method signatue is Task if there is no return type, or Task if there is a return type.
Tho, I'm not 100% certain if you can have async lambdas like that.
In the method that is consuming the task, you would either 'await' the task or use the properties and methods on Task to get the result.