Created
March 31, 2021 07:53
-
-
Save babaktaremi/f3648807ff1c9c6154e24e507d020d61 to your computer and use it in GitHub Desktop.
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
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