dotnet add package System.Collections.Immutable --version 9.0.2
NuGet\Install-Package System.Collections.Immutable -Version 9.0.2
<PackageReference Include="System.Collections.Immutable" Version="9.0.2" />
<PackageVersion Include="System.Collections.Immutable" Version="9.0.2" />
<PackageReference Include="System.Collections.Immutable" />
paket add System.Collections.Immutable --version 9.0.2
#r "nuget: System.Collections.Immutable, 9.0.2"
#:package System.Collections.Immutable@9.0.2
#addin nuget:?package=System.Collections.Immutable&version=9.0.2
#tool nuget:?package=System.Collections.Immutable&version=9.0.2
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.
using System.Collections.Immutable;
// Create immutable set of strings
ImmutableHashSet<string> colors = ImmutableHashSet.Create("Red", "Green", "Blue");
// Create a new set by adding and removing items from the original set
ImmutableHashSet<string> colorsModified = colors.Remove("Red").Add("Orange");
foreach (string s in colorsModified)
{
Console.WriteLine(s);
}
/* Example output:
Blue
Green
Orange
*/
The main types provided by this library are:
System.Collections.Immutable.ImmutableArray
System.Collections.Immutable.ImmutableArray<T>
System.Collections.Immutable.ImmutableDictionary
System.Collections.Immutable.ImmutableDictionary<TKey,TValue>
System.Collections.Immutable.ImmutableHashSet
System.Collections.Immutable.ImmutableHashSet<T>
System.Collections.Immutable.ImmutableList
System.Collections.Immutable.ImmutableList<T>
System.Collections.Immutable.ImmutableQueue
System.Collections.Immutable.ImmutableQueue<T>
System.Collections.Immutable.ImmutableSortedDictionary
System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>
System.Collections.Immutable.ImmutableSortedSet
System.Collections.Immutable.ImmutableSortedSet<T>
System.Collections.Immutable.ImmutableStack
System.Collections.Immutable.ImmutableStack<T>
System.Collections.Frozen.FrozenDictionary
System.Collections.Frozen.FrozenDictionary<TKey, TValue>
System.Collections.Frozen.FrozenSet
System.Collections.Frozen.FrozenSet<T>
System.Collections.Immutable is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
.NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
.NET Framework | net461 net461 was computed. net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
MonoAndroid | monoandroid monoandroid was computed. |
MonoMac | monomac monomac was computed. |
MonoTouch | monotouch monotouch was computed. |
Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
Xamarin.iOS | xamarinios xamarinios was computed. |
Xamarin.Mac | xamarinmac xamarinmac was computed. |
Xamarin.TVOS | xamarintvos xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on System.Collections.Immutable:
Package | Downloads |
---|---|
System.Reflection.Metadata
This package provides a low-level .NET (ECMA-335) metadata reader and writer. It's geared for performance and is the ideal choice for building higher-level libraries that intend to provide their own object model, such as compilers. The metadata format is defined by the ECMA-335 - Common Language Infrastructure (CLI) specification. The System.Reflection.Metadata 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. |
|
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/1ff281352c76f1a56ae8e49af9c4c4ef0e0f0f42. |
|
Microsoft.CodeAnalysis.CSharp
.NET Compiler Platform ("Roslyn") support for C#, Microsoft.CodeAnalysis.CSharp.dll. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/1ff281352c76f1a56ae8e49af9c4c4ef0e0f0f42. |
|
Humanizer.Core
Humanizer core package that contains the library and the neutral language (English) resources |
|
Microsoft.CodeAnalysis.Workspaces.Common
A shared package used by the .NET Compiler Platform ("Roslyn") including support for analyzing projects and solutions. Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/1ff281352c76f1a56ae8e49af9c4c4ef0e0f0f42. |
Showing the top 20 popular GitHub repositories that depend on System.Collections.Immutable:
Repository | Stars |
---|---|
icsharpcode/ILSpy
.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
|
|
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
|
|
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
|
|
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
|
|
dotnet/BenchmarkDotNet
Powerful .NET library for benchmarking
|
|
JamesNK/Newtonsoft.Json
Json.NET is a popular high-performance JSON framework for .NET
|
|
chocolatey/choco
Chocolatey - the package manager for Windows
|
|
dotnet/orleans
Cloud Native application framework for .NET
|
|
mRemoteNG/mRemoteNG
mRemoteNG is the next generation of mRemote, open source, tabbed, multi-protocol, remote connections manager.
|
|
reactiveui/refit
The automatic type-safe REST library for .NET Core, Xamarin and .NET. Heavily inspired by Square's Retrofit library, Refit turns your REST API into a live interface.
|
|
dotnet/machinelearning
ML.NET is an open source and cross-platform machine learning framework for .NET.
|
|
Humanizr/Humanizer
Humanizer meets all your .NET needs for manipulating and displaying strings, enums, dates, times, timespans, numbers and quantities
|
|
neuecc/UniRx
Reactive Extensions for Unity
|
|
stride3d/stride
Stride (formerly Xenko), a free and open-source cross-platform C# game engine.
|
|
NancyFx/Nancy
Lightweight, low-ceremony, framework for building HTTP based services on .Net and Mono
|
|
louthy/language-ext
C# pure functional programming framework - come and get declarative!
|
|
MessagePack-CSharp/MessagePack-CSharp
Extremely Fast MessagePack Serializer for C#(.NET, .NET Core, Unity, Xamarin). / msgpack.org[C#]
|
|
StackExchange/StackExchange.Redis
General purpose redis client
|
|
ldqk/Masuit.Tools
全龄段友好的C#万能工具库,码数吐司库,包含一些常用的操作类,大都是静态类,加密解密,反射操作,权重随机筛选算法,分布式短id,表达式树,linq扩展,文件压缩,多线程下载,硬件信息,字符串扩展方法,日期时间扩展操作,中国农历,大文件拷贝,图像裁剪,验证码,断点续传,集合扩展、Excel导出等常用封装。诸多功能集一身,代码量不到2MB!
|
|
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
|
Version | Downloads | Last Updated | |
---|---|---|---|
10.0.0-rc.2.25502.107 | 0 | 10/14/2025 | |
10.0.0-rc.1.25451.107 | 13,583 | 9/9/2025 | |
10.0.0-preview.7.25380.108 | 4,578 | 8/12/2025 | |
10.0.0-preview.6.25358.103 | 6,860 | 7/15/2025 | |
10.0.0-preview.5.25277.114 | 10,482 | 6/6/2025 | |
10.0.0-preview.4.25258.110 | 5,582 | 5/12/2025 | |
10.0.0-preview.3.25171.5 | 4,669 | 4/10/2025 | |
10.0.0-preview.2.25163.2 | 3,239 | 3/18/2025 | |
10.0.0-preview.1.25080.5 | 3,986 | 2/25/2025 | |
9.0.10 | 0 | 10/14/2025 | |
9.0.9 | 583,430 | 9/9/2025 | |
9.0.8 | 842,752 | 8/4/2025 | |
9.0.7 | 736,635 | 7/8/2025 | |
9.0.6 | 881,078 | 6/10/2025 | |
9.0.5 | 1,290,444 | 5/13/2025 | |
9.0.4 | 1,767,342 | 4/8/2025 | |
9.0.3 | 998,814 | 3/11/2025 | |
9.0.2 | 1,476,601 | 2/11/2025 | |
9.0.1 | 4,319,222 | 1/14/2025 | |
9.0.0 | 10,708,571 | 11/12/2024 | |
9.0.0-rc.2.24473.5 | 29,024 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 32,164 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 8,298 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 8,223 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 6,042 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 3,593 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 4,766 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 9,537 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 20,592 | 2/13/2024 | |
8.0.0 | 152,359,410 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 1,033,896 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 28,079 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 17,608 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 11,858 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 13,567 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 5,002 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 6,609 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 11,522 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 4,936 | 2/21/2023 | |
7.0.0 | 172,826,482 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 61,556 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 17,224 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 9,563 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 8,839 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 3,333 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 18,335 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 129,906 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 89,649 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 78,963 | 2/17/2022 | |
6.0.1 | 4,608,415 | 11/12/2024 | |
6.0.0 | 479,730,288 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 342,563 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 275,158 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 137,015 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 44,606 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 215,816 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 86,557 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 108,332 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 108,473 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 106,087 | 2/12/2021 | |
5.0.0 | 432,920,658 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 403,889 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 333,042 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 503,618 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 123,975 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 5,206 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 7,139 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 7,153 | 5/18/2020 | |
5.0.0-preview.3.20214.6 | 151,807 | 4/23/2020 | |
5.0.0-preview.2.20160.6 | 91,930 | 4/2/2020 | |
5.0.0-preview.1.20120.5 | 16,042 | 3/16/2020 | |
1.7.1 | 291,157,685 | 5/12/2020 | |
1.7.0 | 249,793,449 | 12/3/2019 | |
1.7.0-preview3.19551.4 | 198,804 | 11/13/2019 | |
1.7.0-preview2.19523.17 | 35,921 | 11/1/2019 | |
1.7.0-preview1.19504.10 | 802,615 | 10/15/2019 | |
1.6.0 | 39,152,974 | 9/23/2019 | |
1.6.0-rc1.19456.4 | 51,701 | 9/16/2019 | |
1.6.0-preview9.19421.4 | 1,478,764 | 9/4/2019 | |
1.6.0-preview9.19416.11 | 2,873 | 9/4/2019 | |
1.6.0-preview8.19405.3 | 430,836 | 8/13/2019 | |
1.6.0-preview7.19362.9 | 103,239 | 7/23/2019 | |
1.6.0-preview6.19303.8 | 187,085 | 6/12/2019 | |
1.6.0-preview6.19264.9 | 3,205 | 9/4/2019 | |
1.6.0-preview5.19224.8 | 715,232 | 5/6/2019 | |
1.6.0-preview4.19212.13 | 34,005 | 4/18/2019 | |
1.6.0-preview3.19128.7 | 227,499 | 3/6/2019 | |
1.6.0-preview.19073.11 | 49,261 | 1/29/2019 | |
1.6.0-preview.18571.3 | 74,600 | 12/3/2018 | |
1.5.0 | 365,095,624 | 5/29/2018 | |
1.5.0-rc1 | 393,122 | 5/6/2018 | |
1.5.0-preview2-26406-04 | 305,499 | 4/10/2018 | |
1.5.0-preview1-26216-02 | 584,301 | 2/26/2018 | |
1.4.0 | 170,729,258 | 8/11/2017 | |
1.4.0-preview2-25405-01 | 15,935 | 6/27/2017 | |
1.4.0-preview1-25305-02 | 20,343 | 5/9/2017 | |
1.3.1 | 230,736,876 | 1/3/2017 | |
1.3.0 | 279,672,041 | 11/15/2016 | |
1.3.0-preview1-24530-04 | 141,671 | 10/24/2016 | |
1.2.0 | 362,971,754 | 6/27/2016 | |
1.2.0-rc2-24027 | 12,059,416 | 5/16/2016 | |
1.1.38-beta-23516 | 38,911 | 11/18/2015 | |
1.1.38-beta-23409 | 8,698 | 10/15/2015 | |
1.1.38-beta-23225 | 159,149 | 9/1/2015 | |
1.1.37 | 6,435,774 | 7/29/2015 | |
1.1.37-beta-23109 | 24,108 | 7/27/2015 | |
1.1.37-beta-23019 | 8,541 | 6/30/2015 | |
1.1.36 | 10,768,894 | 5/11/2015 | |
1.1.34-rc | 34,150 | 3/6/2015 | |
1.1.33-beta | 704,849 | 12/10/2014 | |
1.1.32-beta | 268,920 | 10/10/2014 |