System.Threading.Tasks.Parallel 4.3.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved

Requires NuGet 2.12 or higher.

dotnet add package System.Threading.Tasks.Parallel --version 4.3.0
NuGet\Install-Package System.Threading.Tasks.Parallel -Version 4.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Threading.Tasks.Parallel --version 4.3.0
#r "nuget: System.Threading.Tasks.Parallel, 4.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install System.Threading.Tasks.Parallel as a Cake Addin
#addin nuget:?package=System.Threading.Tasks.Parallel&version=4.3.0

// Install System.Threading.Tasks.Parallel as a Cake Tool
#tool nuget:?package=System.Threading.Tasks.Parallel&version=4.3.0

Provides the System.Threading.Tasks.Parallel class, which adds support for running loops and iterators in parallel.

Commonly Used Types:
System.Threading.Tasks.Parallel
System.Threading.Tasks.ParallelLoopState
System.Threading.Tasks.ParallelLoopResult
System.Threading.Tasks.ParallelOptions

When using NuGet 3.x this package requires at least version 3.4.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.1 is compatible.  netstandard1.2 was computed.  netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed.  monoandroid10 is compatible. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed.  monotouch10 is compatible. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform netcore50 is compatible.  uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 is compatible. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 was computed.  win8 is compatible. 
Xamarin.iOS xamarinios was computed.  xamarinios10 is compatible. 
Xamarin.Mac xamarinmac was computed.  xamarinmac20 is compatible. 
Xamarin.TVOS xamarintvos was computed.  xamarintvos10 is compatible. 
Xamarin.WatchOS xamarinwatchos was computed.  xamarinwatchos10 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (177)

Showing the top 5 NuGet packages that depend on System.Threading.Tasks.Parallel:

Package Downloads
Microsoft.Diagnostics.Tracing.TraceEvent The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Event Tracing for Windows (ETW) is a powerful logging mechanism built into the Windows OS and is used extensively in Windows. You can also log ETW events yourself code using the System.Diagnostics.Tracing.EventSource class. The TraceEvent library conains the classes needed to control ETW providers (including .NET EventSources) and parse the events they emit. The library includes -- TraceEventSession which can enable ETW providers, -- EtwTraceEventSource which lets you read the stream of ETW events, and -- TraceLog which is is digested form of ETW events which include decoded stack traces associated with the events. See https://github.com/Microsoft/perfview/blob/master/documentation/TraceEvent/TraceEventLibrary.md for more.

MiniProfiler.Shared The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

You shouldn't reference this - MiniProfiler's shared library for all frameworks

NBitcoin

The C# Bitcoin Library

Microsoft.Toolkit.HighPerformance The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package includes high performance .NET Standard helpers such as: - Memory2D<T> and Span2D<T>: two types providing fast and allocation-free abstraction over 2D memory areas. - ArrayPoolBufferWriter<T>: an IBufferWriter<T> implementation using pooled arrays, which also supports IMemoryOwner<T>. - MemoryBufferWriter<T>: an IBufferWriter<T>: implementation that can wrap external Memory<T>: instances. - MemoryOwner<T>: an IMemoryOwner<T> implementation with an embedded length and a fast Span<T> accessor. - SpanOwner<T>: a stack-only type with the ability to rent a buffer of a specified length and getting a Span<T> from it. - StringPool: a configurable pool for string instances that be used to minimize allocations when creating multiple strings from char buffers. - String, array, Memory<T>, Span<T> extensions and more, all focused on high performance. - HashCode<T>: a SIMD-enabled extension of HashCode to quickly process sequences of values. - BitHelper: a class with helper methods to perform bit operations on numeric types. - ParallelHelper: helpers to work with parallel code in a highly optimized manner. - Box<T>: a type mapping boxed value types and exposing some utility and high performance methods. - Ref<T>: a stack-only struct that can store a reference to a value of a specified type. - NullableRef<T>: a stack-only struct similar to Ref<T>, which also supports nullable references.

Microsoft.Diagnostics.EventFlow.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Defines core interfaces and types that comprise Microsoft.Diagnostics.EventFlow library.

GitHub repositories (91)

Showing the top 5 popular GitHub repositories that depend on System.Threading.Tasks.Parallel:

Repository Stars
neuecc/UniRx
Reactive Extensions for Unity
danielgerlag/workflow-core
Lightweight workflow engine for .NET Standard
microsoft/perfview
PerfView is a CPU and memory performance-analysis tool
MiniProfiler/dotnet
A simple but effective mini-profiler for ASP.NET (and Core) websites
neuecc/ZeroFormatter
Infinitely Fast Deserializer for .NET, .NET Core and Unity.
Version Downloads Last updated
4.3.0 221,060,683 11/15/2016
4.3.0-preview1-24530-04 55,683 10/24/2016
4.0.1 94,565,228 6/27/2016
4.0.1-rc2-24027 2,324,396 5/16/2016
4.0.1-beta-23516 603,149 11/18/2015
4.0.1-beta-23409 26,188 10/15/2015
4.0.1-beta-23225 138,951 9/2/2015
4.0.0 1,966,805 7/29/2015
4.0.0-beta-23109 29,901 7/27/2015
4.0.0-beta-23019 30,101 6/30/2015
4.0.0-beta-22816 31,096 4/24/2015
4.0.0-beta-22605 11,944 2/13/2015
4.0.0-beta-22416 4,178 1/16/2015
4.0.0-beta-22231 2,955 11/11/2014