Comment puis-je convertir un foreach Parallèle.ForEach?

comment convertir:

  foreach (  NotifyCollectionChangedEventHandler handler in delegates) {
            ...
  }

À quelque chose comme Ceci

 Parallel.ForEach(    NotifyCollectionChangedEventHandler handler in delegates) {
  ... 
 }

OriginalL'auteur persianLife | 2013-02-11