Parallel.ForEach 與Foreach 有何不同
Foreach 循環和Parallel.ForEach 都用於迭代集合,但它們的操作方式明顯不同不同的方式。
Foreach循環
Parallel.ForEach
範例轉換
提供的範例從檔案中讀取行並使用 foreach 循環迭代它們,可以重寫與 Parallel.ForEach如下:
string[] lines = File.ReadAllLines(txtProxyListPath.Text); List<string> list_lines = new List<string>(lines); Parallel.ForEach(list_lines, (line) => { // Insert your line-specific operations here });
在此轉換:
以上是Parallel.ForEach 與 Foreach:什麼時候該使用哪一個?的詳細內容。更多資訊請關注PHP中文網其他相關文章!