What is the .NET equivalent of java.util.concurrent java package?

I come from a Java background. I want to learn more about concurrency in .Net and C #. Is there something similar to the Utilities Java Parallel Package?

+3
source share
3 answers

Coming soon will be the new features of Threading in .NET 4.0, also known as Parallel Extensions.

The existing .NET features (i.e., in 3.5 and earlier versions) are better than Java without java.util.concurrent, but it, of course, does not cover everything that is in java.util.concurrent.

Parallel Extensions Team Blog is worth reading to learn more.

+6
source

, , System.Threading.

.NET 4.0 , ParallelFX, .

+1

namespace: System.Collections.Concurrent It has thread-safe blocking types. Some of them,

0
source

Source: https://habr.com/ru/post/1724296/


All Articles