What is the .NET equivalent of Java's java.util.concurrent package?
.net, concurrency, java
Solution
The closest will be the new threading abilities in .NET 4.0, also known as Parallel Extensions.
The existing capabilities of .NET (i.e. in 3.5 and earlier) are better than Java without java.util.concurrent, but it certainly doesn't cover everything which is in java.util.concurrent.
The Parallel Extensions Team Blog is well worth reading to learn more.
Problem
I come from a Java background. I am wanting to learn more about concurrency in .Net and C#. Is there something similar to Java's concurrent utils package?