Can anyone explain the "await" function?
feedback
|
|
They just talked about this at PDC yesterday! Await is used in conjunction with Tasks (parallel programming) in .NET. It's a keyword being introduced in the next version of .NET. It more or less lets you "pause" the execution of a method to wait for the Task to complete execution. Here's a brief example:
| |||||||||||||||||||||
feedback
|
|
Basically, the Think of it as being somewhat similar to a Similarly, a method marked as So, these two new keywords basically simplify the coding of asynchronous processes, much like | ||||
|
feedback
|
|
Watch "The Future of C# and Visual Basic", Anders Hejlsberg's presentation at PDC 2010 where he covers this and gives some cool demos. If you want to play around with it now, you can get the VS Async CTP here. | |||
|
feedback
|
|
Actually this is not LINQ, this is the (only accounced) new feature in C#5, part of async programming. As such, we don't really know too much about it. However there's a decent writeup on it here. | |||
|
feedback
|