I using PLINQ on collection of more then 10000 element... i m not getting the performance as compare with sequential query.
my system configuration is as follows: OS - Windows 7 32-bit, processor - Intel Core2Duo.
Please help me i am not getting the proper performance.
The query is:
ParallelQuery<int> j = Enumerable.Range(0, 1000000).AsParallel();
var sss = j.Where(o => o%2 == 0);