diff options
Diffstat (limited to 'content/notes/non-blocking-shell-exec-csharp.md')
| -rw-r--r-- | content/notes/non-blocking-shell-exec-csharp.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/notes/non-blocking-shell-exec-csharp.md b/content/notes/non-blocking-shell-exec-csharp.md index db40409..1904c4d 100644 --- a/content/notes/non-blocking-shell-exec-csharp.md +++ b/content/notes/non-blocking-shell-exec-csharp.md | |||
| @@ -32,8 +32,8 @@ private async Task executeCopyCommand() | |||
| 32 | } | 32 | } |
| 33 | ``` | 33 | ``` |
| 34 | 34 | ||
| 35 | Make sure that `async` is present in the function definition and `await` is | 35 | Make sure that `async` is present in the function definition and `await` is used |
| 36 | used in the method that calls `executeCopyCommand()`. | 36 | in the method that calls `executeCopyCommand()`. |
| 37 | 37 | ||
| 38 | ```c# | 38 | ```c# |
| 39 | private async void button_Click(object sender, EventArgs e) | 39 | private async void button_Click(object sender, EventArgs e) |
