Brief Summary
This course is your go-to guide for diving into .NET Parallel Programming using C#. It breaks down complex topics like multithreading into tasty, bite-sized pieces so you can learn without feeling overwhelmed. Whether you're a newbie or someone with a bit of experience, you'll find helpful tips and tricks to make programming easier and more effective.
Key Points
-
Understand core multithreading concepts in .NET.
-
Learn about Task Parallel Library and Parallel LINQ.
-
Explore how to manage tasks, data sharing, and synchronization.
Learning Outcomes
-
Create and manage tasks in C#.
-
Safely share and synchronize data between threads.
-
Utilize parallel collections for efficient programming.
About This Course
Discover the core multithreading and parallelization concepts supported by the .NET framework.
This course is about .NET Parallel Programming with C# and covers the core multithreading facilities in the .NET Framework, namely the Task Parallel Library (TPL) and Parallel LINQ (PLINQ).
This course will teach you about:
Task Programming: how to create and run tasks, cancel them, wait on them and handle exceptions that occur in tasks.
Data Sharing and Synchronization, ensuring your access to shared data also happens in a safe and consistent manner.
Concurrent Collections, such as ConcurrentBag, which operate correctly even when accessed from multiple threads.
Task Coordination concepts, including the idea of continuations, as well as uses of synchronization primitives to coordinate tasks.
Parallel Loops which let you easily iterate over a counter or collection while partitioning the data and processing it on separate threads.
Parallel LINQ, the parallel version of .NET's awesome Language-Integrated Query (LINQ) technology.
Async/Await and .NET's support for asynchronous programming.
This course is suitable for:
Beginner and experienced .NET/C# developers
Anyone interested in multi-threading, parallelism and asynchronous programming
The course consists of the following materials:
Before taking the course, you should be comfortable with the C# programming language and familiar with multi-threading.
Create and run independent tasks
Manage synchronized access to data
Effectively use parallel collections
Fabien C.
Très bon cours d'introduction, Toute la théory est là. Mais des exemple plus concrets de cas d'utilisation et un exemple de programme un peu plus complexe aurait été les bienvenus