Soenneker.Extensions.Dictionaries.StringString
4.0.26
Prefix Reserved
dotnet add package Soenneker.Extensions.Dictionaries.StringString --version 4.0.26
NuGet\Install-Package Soenneker.Extensions.Dictionaries.StringString -Version 4.0.26
<PackageReference Include="Soenneker.Extensions.Dictionaries.StringString" Version="4.0.26" />
<PackageVersion Include="Soenneker.Extensions.Dictionaries.StringString" Version="4.0.26" />
<PackageReference Include="Soenneker.Extensions.Dictionaries.StringString" />
paket add Soenneker.Extensions.Dictionaries.StringString --version 4.0.26
#r "nuget: Soenneker.Extensions.Dictionaries.StringString, 4.0.26"
#:package Soenneker.Extensions.Dictionaries.StringString@4.0.26
#addin nuget:?package=Soenneker.Extensions.Dictionaries.StringString&version=4.0.26
#tool nuget:?package=Soenneker.Extensions.Dictionaries.StringString&version=4.0.26
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.26 | 598 | 8/29/2026 |
| 4.0.24 | 83 | 8/29/2026 |
| 4.0.23 | 115 | 8/29/2026 |
| 4.0.22 | 2,169 | 7/27/2026 |
| 4.0.21 | 957 | 7/16/2026 |
| 4.0.20 | 1,760 | 6/19/2026 |
| 4.0.19 | 1,479 | 6/5/2026 |
| 4.0.18 | 2,021 | 4/22/2026 |
| 4.0.17 | 1,637 | 3/12/2026 |
| 4.0.16 | 126 | 3/12/2026 |
| 4.0.15 | 124 | 3/12/2026 |
| 4.0.14 | 128 | 3/12/2026 |
| 4.0.13 | 819 | 3/10/2026 |
| 4.0.12 | 397 | 3/9/2026 |
| 4.0.11 | 150 | 3/9/2026 |
| 4.0.10 | 117 | 3/9/2026 |
| 4.0.9 | 1,046 | 3/4/2026 |
| 4.0.8 | 2,976 | 1/14/2026 |
| 4.0.7 | 1,550 | 1/2/2026 |
| 4.0.6 | 1,851 | 11/20/2025 |
Describe extension library scope separately from current API