c# – .NET Standard 1.6中的System.Threading.Tasks.Parallel在哪里?

前端之家收集整理的这篇文章主要介绍了c# – .NET Standard 1.6中的System.Threading.Tasks.Parallel在哪里?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
asp.net核心1中的Parrallel在哪里?
Parallel.ForEach(results,(x) =>
    {
        foo();
    });

当前上下文.NETStandard,Version = v1.6中不存在名称“Parallel”

解决方法

您需要对System.Threading.Tasks.Parallel的引用

您可以使用nuget来获取此信息.
或者,将以下内容添加到project.json中

"dependencies": {
    //
    "System.Threading.Tasks.Parallel": "4.0.1"
  },

注意:
这已经过时了,因为没有更多的project.json

根据评论,将其添加到您的csproj:

<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" />

猜你在找的C#相关文章