Skip to content

Instantly share code, notes, and snippets.

@Mike-E-angelo
Created May 27, 2019 07:22
Show Gist options
  • Save Mike-E-angelo/bb523331bab50d79df90570765120b68 to your computer and use it in GitHub Desktop.
Save Mike-E-angelo/bb523331bab50d79df90570765120b68 to your computer and use it in GitHub Desktop.
Basic Asynchronous Interface
public interface IHelloWorldAsync
{
Task<string> SayHelloAsync(string message);
}
@Mike-E-angelo
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment