Posts by Tiago Barbosa - MSFT • 9 points
1 post
-
0
votes7
answers9251
viewsA: In C#, what is the await keyword for?
The word await is a new syntax for using asynchronous methods. It should be placed before each asynchronous method and the method where we are should always have the async identifier before the type…