変換する方法:
foreach ( NotifyCollectionChangedEventHandler handler in delegates) {
...
}
このような何かに
Parallel.ForEach( NotifyCollectionChangedEventHandler handler in delegates) {
...
}
変換する方法:
foreach ( NotifyCollectionChangedEventHandler handler in delegates) {
...
}
このような何かに
Parallel.ForEach( NotifyCollectionChangedEventHandler handler in delegates) {
...
}
できるよ:
Parallel.ForEach(delegates, handler =>
{
//your stuff
});
次の例を考えてみましょう
List<string> list = new List<string>()
{
"ABC",
"DEF",
"EFG"
};
Parallel.ForEach(list, str =>
{
Console.WriteLine(str);
});
次も参照してください:方法: 単純な Parallel.ForEach ループを作成する
ここでは、非常に簡単に:
Parallel.ForEach(delegates, handler =>
{
//Do your thing with the handler and may the thread-safety be with you.
});
ドキュメントを読んだ後、それは非常に明白なはずですが。
MSDNの簡単な例。
// A simple source for demonstration purposes. Modify this path as necessary.
string[] files = System.IO.Directory.GetFiles(@"C:\Users\Public\Pictures\Sample Pictures", "*.jpg");
string newDir = @"C:\Users\Public\Pictures\Sample Pictures\Modified";
System.IO.Directory.CreateDirectory(newDir);
// Method signature: Parallel.ForEach(IEnumerable<TSource> source, Action<TSource> body)
Parallel.ForEach(files, currentFile =>
{
// The more computational work you do here, the greater
// the speedup compared to a sequential foreach loop.
string filename = System.IO.Path.GetFileName(currentFile);
System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(currentFile);
bitmap.RotateFlip(System.Drawing.RotateFlipType.Rotate180FlipNone);
bitmap.Save(System.IO.Path.Combine(newDir, filename));
// Peek behind the scenes to see how work is parallelized.
// But be aware: Thread contention for the Console slows down parallel loops!!!
Console.WriteLine("Processing {0} on thread {1}", filename, Thread.CurrentThread.ManagedThreadId);
} //close lambda expression
); //close method invocation
Action<TSource>
目的に合わせてパラメーター引数にいくつか追加します。
Parallel.ForEach(delegates, d => { ... });