I am trying to schedule a time to change the visible property of the form after 10 seconds.
Task.Delay(1000).ContinueWith((task) => {
this.Visible = true;
});
How can i solve it?
I am trying to schedule a time to change the visible property of the form after 10 seconds.
Task.Delay(1000).ContinueWith((task) => {
this.Visible = true;
});
How can i solve it?