System.Collections.Immutable
This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity. The System.Collections.Immutable library is built-in as part of the shared framework in .NET Runtime. The package can be installed when you need to use it in other target frameworks.
Total Downloads
4.1B
4,061,921,780
Published
Jun 9, 2026
Latest stable version
Install
.NET CLI
dotnet add package System.Collections.Immutable --version 10.0.9
Package Manager Console
Install-Package System.Collections.Immutable -Version 10.0.9
PackageReference
<PackageReference Include="System.Collections.Immutable" Version="10.0.9" />
Frameworks
Dependencies
System.Memory
[4.6.3, )
.NETFramework4.6.2
System.Runtime.CompilerServices.Unsafe
[6.1.2, )
.NETFramework4.6.2
System.Memory
[4.6.3, )
.NETStandard2.0
System.Runtime.CompilerServices.Unsafe
[6.1.2, )
.NETStandard2.0