Skip to content

Instantly share code, notes, and snippets.

@zzandy
Created August 1, 2016 10:10
Show Gist options
  • Save zzandy/bca066196af7b3f51235280b3b286d36 to your computer and use it in GitHub Desktop.
Save zzandy/bca066196af7b3f51235280b3b286d36 to your computer and use it in GitHub Desktop.
class Program {
private static string result;
static void Main() {
SaySomething();
Console.WriteLine(result);
}
static async Task<string> SaySomething() {
await Task.Delay(5);
result = "Hello world!";
returnSomething;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment