Skip to content

Instantly share code, notes, and snippets.

@babaktaremi
Created March 31, 2021 07:53
Show Gist options
  • Save babaktaremi/f3648807ff1c9c6154e24e507d020d61 to your computer and use it in GitHub Desktop.
Save babaktaremi/f3648807ff1c9c6154e24e507d020d61 to your computer and use it in GitHub Desktop.
class SomeTask
{
public Task<int> DoSomeWork(int value)
{
return Task.FromResult(value + 10);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment