Skip to content

Latest commit

 

History

History
55 lines (50 loc) · 5.65 KB

async-and-await.md

File metadata and controls

55 lines (50 loc) · 5.65 KB

Async and Await

📘 Resources

📝 Articles

📹 Videos

Libraries

  • Nito.AsyncEx - A helper library for the Task-Based Asynchronous Pattern (TAP).
  • Microsoft.VisualStudio.Threading - Async synchronization primitives, async collections, TPL and dataflow extensions. The JoinableTaskFactory allows synchronously blocking the UI thread for async work.
  • AsyncEnumerator - Introduces IAsyncEnumerable, IAsyncEnumerator, ForEachAsync(), and ParallelForEachAsync() and other useful stuff to use with async-await
  • AsyncIO.DotNet - Easy-to-use library for common async IO file system operations.
  • NeoSmart.AsyncLock - A C# lock replacement for async/await, supporting recursion/re-entrance and asynchronous waits.