.NET
plinq.txt
Associated article: Parallel LINQ
Tags: Parallel .NET
Published and unpublished source code accompanying the article by Paul Kimmel in which he examines Parallal LINQ, which is part of the Parallel FX extensions for .NET. PLINQ lets you use basic LINQ keywords to tap into the extra power that multicore systems provide.
Parallel LINQ
by Paul Kimmel
Listing One
(a)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Threading;
namespace Primes
{
class Program
{
static void Main(string[] args)
{
const long upper = 1000000;
SieveOfEratosthenes.BuildPrimes(...


