Skip to content

Instantly share code, notes, and snippets.

@jesuscampos
Created October 14, 2018 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesuscampos/e995ec5a7b6174236dd5d93d92c66bba to your computer and use it in GitHub Desktop.
Save jesuscampos/e995ec5a7b6174236dd5d93d92c66bba to your computer and use it in GitHub Desktop.
public interface MyInterface
{
Task<int> GetMagicNumber();
}
public class MyClass : MyInterface
{
public Task<int> GetMagicNumber()
{
return Task.FromResult(3);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment