public static void ForEachParallel <T>(this IEnumerable <T> items, Action <T> action)
 {
     items.ForEachParallel(action, Parallel);
 }