}
}
(Choose 1 answer)
class Program{
static async Task Display(string message){
await Task. Delay(2000);
Console.WriteLine(message):
}
async static Task Main(string[] args) {
Display("Hello"):
Console.WriteLine("Main thread"):
Console.ReadLine():
Which one of the following is the output of the above code?
A. An exception will be thrown
B. Compile-time error
C. Main thread
Hello
D. Hello Main thread
Rsh
Q: 41