コード例 #1
0
 public static System.Threading.Tasks.ParallelLoopResult ForEach <TSource, TLocal>(System.Collections.Concurrent.OrderablePartitioner <TSource> source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Func <TLocal> localInit, System.Func <TSource, System.Threading.Tasks.ParallelLoopState, long, TLocal, TLocal> body, System.Action <TLocal> localFinally)
 {
     throw null;
 }
コード例 #2
0
 public static System.Threading.Tasks.ParallelLoopResult ForEach <TSource>(System.Collections.Concurrent.OrderablePartitioner <TSource> source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action <TSource, System.Threading.Tasks.ParallelLoopState, long> body)
 {
     throw null;
 }
コード例 #3
0
 public static System.Threading.Tasks.ParallelLoopResult ForEach <TSource>(System.Collections.Concurrent.OrderablePartitioner <TSource> source, System.Action <TSource, System.Threading.Tasks.ParallelLoopState, long> body)
 {
     return(default(System.Threading.Tasks.ParallelLoopResult));
 }
コード例 #4
0
ファイル: Parallel.cs プロジェクト: Feinbube/hybridNet
 public static void ForEach <TSource>(Execute mode, System.Collections.Concurrent.OrderablePartitioner <TSource> source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Action <TSource, System.Threading.Tasks.ParallelLoopState, long> body)
 {
     System.Threading.Tasks.Parallel.ForEach <TSource>(source, parallelOptions, body);
 }
コード例 #5
0
ファイル: Parallel.cs プロジェクト: Feinbube/hybridNet
 public static void ForEach <TSource, TLocal>(Execute mode, System.Collections.Concurrent.OrderablePartitioner <TSource> source, System.Threading.Tasks.ParallelOptions parallelOptions, System.Func <TLocal> localInit, System.Func <TSource, System.Threading.Tasks.ParallelLoopState, long, TLocal, TLocal> body, System.Action <TLocal> localFinally)
 {
     System.Threading.Tasks.Parallel.ForEach <TSource, TLocal>(source, parallelOptions, localInit, body, localFinally);
 }
コード例 #6
0
 public static ParallelLoopResult ForEach <TSource, TLocal>(System.Collections.Concurrent.OrderablePartitioner <TSource> source, ParallelOptions parallelOptions, Func <TLocal> localInit, Func <TSource, ParallelLoopState, long, TLocal, TLocal> body, Action <TLocal> localFinally)
 {
     return(default(ParallelLoopResult));
 }
コード例 #7
0
 public static ParallelLoopResult ForEach <TSource>(System.Collections.Concurrent.OrderablePartitioner <TSource> source, ParallelOptions parallelOptions, Action <TSource, ParallelLoopState, long> body)
 {
     return(default(ParallelLoopResult));
 }