diff --git a/Threading/Program.cs b/Threading/Program.cs index 232b9dd..5556fd0 100644 --- a/Threading/Program.cs +++ b/Threading/Program.cs @@ -2,8 +2,10 @@ using Threading; -//Console.WriteLine("Hello, World!"); +Console.WriteLine($"There are {ThreadPool.ThreadCount} threads in the pool."); -//await WaitThread.RunTaskBlocking(); +await WaitThread.RunTaskNonBlocking(); -await ShaRunner.RunMultiple(10000); \ No newline at end of file +Console.WriteLine($"There are {ThreadPool.ThreadCount} threads in the pool."); + +//await ShaRunner.RunMultiple(10000); \ No newline at end of file