Created
March 31, 2021 07:35
-
-
Save babaktaremi/f4efd37a29b3b1f2492ebb2ec47dc376 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 Program | |
{ | |
static async Task Main(string[] args) | |
{ | |
var task=new SomeTask(); | |
await task.DoSomeWork(); //Compile Error | |
Console.WriteLine("Hello World!"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment