Soenneker.Extensions.Dictionaries.StringString
4.0.27
Prefix Reserved
dotnet add package Soenneker.Extensions.Dictionaries.StringString --version 4.0.27
NuGet\Install-Package Soenneker.Extensions.Dictionaries.StringString -Version 4.0.27
<PackageReference Include="Soenneker.Extensions.Dictionaries.StringString" Version="4.0.27" />
<PackageVersion Include="Soenneker.Extensions.Dictionaries.StringString" Version="4.0.27" />
<PackageReference Include="Soenneker.Extensions.Dictionaries.StringString" />
paket add Soenneker.Extensions.Dictionaries.StringString --version 4.0.27
#r "nuget: Soenneker.Extensions.Dictionaries.StringString, 4.0.27"
#:package Soenneker.Extensions.Dictionaries.StringString@4.0.27
#addin nuget:?package=Soenneker.Extensions.Dictionaries.StringString&version=4.0.27
#tool nuget:?package=Soenneker.Extensions.Dictionaries.StringString&version=4.0.27
Soenneker.Extensions.Dictionaries.StringString
Extension methods for converting and transforming string-keyed, string-valued dictionaries while preserving important dictionary behavior such as key comparison.
Installation
dotnet add package Soenneker.Extensions.Dictionaries.StringString
Usage
using Soenneker.Extensions.Dictionaries.StringString;
var source = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase)
{
["Region"] = "us-east"
};
Dictionary<string, object> values = source.ToObjectDictionary();
object region = values["region"]; // "us-east"
The result is a separate dictionary; changing it does not change the source. When the source is a concrete Dictionary<string, string>, its key comparer is preserved, which is why the case-insensitive lookup above works. A null source throws ArgumentNullException.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Soenneker.Extensions.Dictionaries.StringString:
| Package | Downloads |
|---|---|
|
Soenneker.Email.Sender
A high-level utility responsible for orchestrating the creation and delivery of templated email messages |
|
|
Soenneker.Email.Senders.Resend
A high-level utility responsible for orchestrating the creation and delivery of templated email messages using Resend |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.27 | 377 | 9/7/2026 |
| 4.0.26 | 1,061 | 8/29/2026 |
| 4.0.24 | 92 | 8/29/2026 |
| 4.0.23 | 127 | 8/29/2026 |
| 4.0.22 | 2,175 | 7/27/2026 |
| 4.0.21 | 960 | 7/16/2026 |
| 4.0.20 | 1,762 | 6/19/2026 |
| 4.0.19 | 1,481 | 6/5/2026 |
| 4.0.18 | 2,028 | 4/22/2026 |
| 4.0.17 | 1,638 | 3/12/2026 |
| 4.0.16 | 126 | 3/12/2026 |
| 4.0.15 | 125 | 3/12/2026 |
| 4.0.14 | 129 | 3/12/2026 |
| 4.0.13 | 821 | 3/10/2026 |
| 4.0.12 | 399 | 3/9/2026 |
| 4.0.11 | 151 | 3/9/2026 |
| 4.0.10 | 117 | 3/9/2026 |
| 4.0.9 | 1,047 | 3/4/2026 |
| 4.0.8 | 2,977 | 1/14/2026 |
| 4.0.7 | 1,550 | 1/2/2026 |
Merge remote updates with performance improvements