Created
May 27, 2019 07:22
-
-
Save Mike-E-angelo/bb523331bab50d79df90570765120b68 to your computer and use it in GitHub Desktop.
Basic Asynchronous Interface
This file contains 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 interface IHelloWorldAsync | |
{ | |
Task<string> SayHelloAsync(string message); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Used as example code for https://developercommunity.visualstudio.com/idea/583945/improve-asynchronous-programming-model.html