8
Answers

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

Photo of Anil Sah

Anil Sah

8y
3.3k
1
 Btn0.Background = Brushes.Red;
Task.Delay(100);
Btn0.Background = Brushes.Teal;

Answers (8)