ForAll 呼び出しの前にマージ オプションを NotBuffered に設定しても意味がありません。これら 2 つのスニペットは同等ですか:
pquery.WithMergeOptions(ParallelMergeOptions.NotBuffered).ForAll(DoStuff);
と
pquery.ForAll(DoStuff);
ForAll 呼び出しの前にマージ オプションを NotBuffered に設定しても意味がありません。これら 2 つのスニペットは同等ですか:
pquery.WithMergeOptions(ParallelMergeOptions.NotBuffered).ForAll(DoStuff);
と
pquery.ForAll(DoStuff);