Created
May 26, 2016 19:49
-
-
Save mantzas/f5a1805a21b2c0a0924952aa374f6b5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task AwaitAsync() | |
{ | |
await Task.Run(() => Console.WriteLine("")); | |
} | |
public Task AwaitNormal() | |
{ | |
return Task.Run(() => Console.WriteLine("")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment