Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. public async T Method()
  2. {
  3. T result = await doSomeStuff();
  4.  
  5. return result;
  6. }
  7.  
  8. public async void AnotherMethod()
  9. {
  10. await Method();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement