Search code examples
How to safely call an async method in C# without await...


c#exceptionasync-awaittasktask-parallel-library

Read More
Nesting await in Parallel.ForEach...


c#wcfasync-awaittask-parallel-libraryparallel.foreach

Read More
What gotchas exist with Tasks and Garbage Collection?...


c#.netgarbage-collectiontask-parallel-librarytask

Read More
Reducing closure overhead in Task.Run/Factory.StartNew with predefined object...


c#closurestask-parallel-library

Read More
When should TaskCompletionSource<T> be used?...


c#.net.net-4.0task-parallel-librarytaskcompletionsource

Read More
Do I need to dispose of a Task?...


.nettask-parallel-librarydispose

Read More
When to use BlockingCollection and when ConcurrentBag instead of List<T>?...


c#wpfmultithreadinglinqtask-parallel-library

Read More
Run two async tasks in parallel and collect results in .NET 4.5...


c#asynchronousasync-awaittask-parallel-library.net-4.5

Read More
Ignore the Tasks throwing Exceptions at Task.WhenAll and get only the completed results...


c#.netexceptiontask-parallel-librarytask

Read More
Mutex.TryOpenExisting() is thread safe?...


c#thread-safetytask-parallel-librarymutex

Read More
How do I do the equivalent of TaskCompletionSource<nothing>?...


c#.nettask-parallel-library

Read More
Parallel.ForEach vs ActionBlock...


c#parallel-processingtask-parallel-libraryparallel.foreachtpl-dataflow

Read More
Creating and starting a task on the UI thread...


c#wpftask-parallel-librarytask

Read More
Wrapping a task in an async with a timeout?...


asynchronousf#task-parallel-libraryf#-async

Read More
WhenAny vs WhenAll vs WaitAll vs none, given that results are being used immediately...


c#asynchronousasync-awaittasktask-parallel-library

Read More
Timer not enabled again after Task.ContinueWith...


.nettimertask-parallel-library

Read More
Awaitable AutoResetEvent...


c#.netmultithreadingasynchronoustask-parallel-library

Read More
How to name a thread running a Task?...


c#multithreadingtask-parallel-library

Read More
Thread.Sleep() vs Task.Delay().Wait()...


c#.nettasktask-parallel-librarythread-sleep

Read More
How to send multiple requests to a server at few milliseconds of interval in C#...


c#asynchronoustimertask-parallel-library

Read More
Why Task needs to use ManualResetEventSlim internally?...


c#.nettasktask-parallel-librarythread-synchronization

Read More
Simple Parallel Tasks with Continuation...


c#c#-4.0task-parallel-library

Read More
Why ExecuteSynchronously is not the default for async await?...


c#.netasync-awaittask-parallel-library

Read More
Best way in .NET to manage queue of tasks on a separate (single) thread...


c#.netasynchronousconcurrencytask-parallel-library

Read More
What does MaxDegreeOfParallelism do?...


c#concurrencyparallel-processingtask-parallel-libraryparallel.foreach

Read More
Calling TaskCompletionSource.SetResult in a non blocking manner...


c#multithreadingasynchronoustask-parallel-libraryasync-await

Read More
What is the best way to call API calls in parallel in .NET Core, C#?...


c#asp.net-coreparallel-processingtask-parallel-library

Read More
How to run BackgroundService by counter using Task?...


c#.net-coretask-parallel-librarybackground-service

Read More
Associate a CancellationToken with an async method's Task...


c#async-awaittask-parallel-librarycancellation-token

Read More
How does cancellation acknowledgment work for async continuations?...


c#.netasync-awaittask-parallel-librarycancellation-token

Read More
BackNext