Parallel LINQ
In continuation to my 100DaysOfCoding, in this post I will talk about Parallel LINQ. Parallel Language-Integrated Query(PLINQ) can be used to allow elements of a query to execute in parallel. Below is a snippet of code which consists of an array of persons. AsParallel Using PLINQ we are selecting the records where the person city... » read more