-
-
Save Pan-Maciek/db436b0837ae6ecea616c0377eea2553 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| async Task Delay(int t) { | |
| await Task.Delay(t); | |
| } | |
| private async void btClick(object sender, EventArgs e) { | |
| await Delay(1000); //czekam nie blokując wątku | |
| MessageBox.Show("DONE"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment