8
Answers

How to await Task.Delay(100) function below .net framework?

 Btn0.Background = Brushes.Red;
Task.Delay(100);
Btn0.Background = Brushes.Teal;

Answers (8)