新建一个.NET Core控制台程序,代码如下:
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace NetCoreParallel
{
class Program
{
static void Main(string[] args)
{
var numbersToShow = new List() { 1, 2, 3, 4, 5, 6 };
Parallel.ForEach(numbersToShow, number =>
{
Thread.Sleep(3000);
Console.WriteLine($”Parallel ForEach is now displaying number: {number.ToString()}”);
});
Console.WriteLine();
Console.WriteLine();
Console.WriteLine(“Parallel ForEach finished.”);
Console.WriteLine(“Press key contiune…”);
Console.ReadKey();
}
}
}
执行后结果如下:
因为Parallel.ForEach为并行执行,所以再次执行时6个数字出现的顺序可能会不一样。
https://www.cnblogs.com/OpenCoder/category/1132736.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/34908.html