From 22f5ac8fcec4dbfcc1f5033f18bc4eeca52a747d Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Tue, 31 Oct 2023 08:20:22 +0100 Subject: Made the side more retro! --- public/non-blocking-shell-exec-csharp.html | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'public/non-blocking-shell-exec-csharp.html') diff --git a/public/non-blocking-shell-exec-csharp.html b/public/non-blocking-shell-exec-csharp.html index 2039299..5e5a328 100755 --- a/public/non-blocking-shell-exec-csharp.html +++ b/public/non-blocking-shell-exec-csharp.html @@ -1,9 +1,12 @@ -Execute not blocking async shell command in C#

Execute not blocking async shell command in C#

note, May 22, 2023 on Mitja Felicijan's blog

Execute a shell command in async in C# while not blocking the UI thread.

private async Task executeCopyCommand()
 {
   await Task.Run(() =>
   {
@@ -28,7 +31,7 @@ in the method that calls executeCopyCommand().
{
   await executeCopyCommand();
 }
-

Posts from blogs I follow around the net