I am pretty much interested into using the newly enhanced Parallelism features in .NET 4.0.
I have also seen some possibilities of using it in F#, as much as in C#.
Despite, I can only see what PLINQ has to offer with, for example, the following:
var query = from c in Customers.AsParallel()
where (c.Name.Contains("customerNameLike"))
select c;
There must for sure be some other use of this parallelism thing.
Have you any other examples of using it? Is this particularly turned toward PLINQ, or are there other usage as easy as PLINQ?
Thanks! =)