LinkDotNet.StringBuilder
2.4.1
dotnet add package LinkDotNet.StringBuilder --version 2.4.1
NuGet\Install-Package LinkDotNet.StringBuilder -Version 2.4.1
<PackageReference Include="LinkDotNet.StringBuilder" Version="2.4.1" />
<PackageVersion Include="LinkDotNet.StringBuilder" Version="2.4.1" />
<PackageReference Include="LinkDotNet.StringBuilder" />
paket add LinkDotNet.StringBuilder --version 2.4.1
#r "nuget: LinkDotNet.StringBuilder, 2.4.1"
#addin nuget:?package=LinkDotNet.StringBuilder&version=2.4.1
#tool nuget:?package=LinkDotNet.StringBuilder&version=2.4.1
StringBuilder
A fast and low allocation StringBuilder for .NET.
Getting Started
Install the package:
PM> Install-Package LinkDotNet.StringBuilder
Afterward, use the package as follow:
using LinkDotNet.StringBuilder; // Namespace of the package
using ValueStringBuilder stringBuilder = new();
stringBuilder.AppendLine("Hello World");
string result = stringBuilder.ToString();
There are also smaller helper functions, which enable you to use ValueStringBuilder
without any instance:
string result1 = ValueStringBuilder.Concat("Hello ", "World"); // "Hello World"
string result2 = ValueStringBuilder.Concat("Hello", 1, 2, 3, "!"); // "Hello123!"
By default, ValueStringBuilder
uses a rented buffer from ArrayPool<char>.Shared
.
You can avoid renting overhead with an initially stack-allocated buffer:
using ValueStringBuilder stringBuilder = new(stackalloc char[128]);
Note that this will prevent you from returning stringBuilder
or assigning it to an out
parameter.
What does it solve?
The dotnet version of the StringBuilder
is an all-purpose version that normally fits a wide variety of needs.
But sometimes, low allocation is key. Therefore I created the ValueStringBuilder
. It is not a class but a ref struct
that tries to allocate as little as possible.
If you want to know how the ValueStringBuilder
works and why it uses allocations and is even faster, check out this blog post.
The blog goes into a bit more in detail about how it works with a simplistic version of the ValueStringBuilder
.
What doesn't it solve?
The library is not meant as a general replacement for the StringBuilder
built into .NET. You can head over to the documentation and read about the "Known limitations".
The library works best for a small to medium length strings (not hundreds of thousands of characters, even though it can be still faster and performs fewer allocations). At any time, you can convert the ValueStringBuilder
to a "normal" StringBuilder
and vice versa.
The normal use case is to concatenate strings in a hot path where the goal is to put as minimal pressure on the GC as possible.
Documentation
More detailed documentation can be found here. It is really important to understand how the ValueStringBuilder
works so that you did not run into weird situations where performance/allocations can even rise.
Benchmark
The following table compares the built-in StringBuilder
and this library's ValueStringBuilder
:
BenchmarkDotNet v0.14.0, macOS Sequoia 15.3.1 (24D70) [Darwin 24.3.0]
Apple M2 Pro, 1 CPU, 12 logical and 12 physical cores
.NET SDK 9.0.200
[Host] : .NET 9.0.2 (9.0.225.6610), Arm64 RyuJIT AdvSIMD
DefaultJob : .NET 9.0.2 (9.0.225.6610), Arm64 RyuJIT AdvSIMD
| Method | Mean | Error | StdDev | Ratio | Gen0 | Allocated | Alloc Ratio |
|-------------------- |----------:|---------:|---------:|------:|-------:|----------:|------------:|
| DotNetStringBuilder | 126.74 ns | 0.714 ns | 0.667 ns | 1.00 | 0.1779 | 1488 B | 1.00 |
| ValueStringBuilder | 95.69 ns | 0.118 ns | 0.110 ns | 0.76 | 0.0669 | 560 B | 0.38 |
For more comparisons, check the documentation.
Another benchmark shows that ValueStringBuilder
allocates less memory when appending value types (such as int
and double
):
| Method | Mean | Error | StdDev | Gen0 | Gen1 | Allocated |
|------------------------------- |---------:|--------:|--------:|-------:|-------:|----------:|
| ValueStringBuilderAppendFormat | 821.7 ns | 1.29 ns | 1.14 ns | 0.4330 | - | 3.54 KB |
| StringBuilderAppendFormat | 741.5 ns | 5.58 ns | 5.22 ns | 0.9909 | 0.0057 | 8.1 KB |
Check out the Benchmark for a more detailed comparison and setup.
Support & Contributing
Thanks to all contributors and people that are creating bug-reports and valuable input:
<a href="https://github.com/linkdotnet/StringBuilder/graphs/contributors"> <img src="https://contrib.rocks/image?repo=linkdotnet/StringBuilder" alt="Supporters" /> </a>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (5)
Showing the top 5 NuGet packages that depend on LinkDotNet.StringBuilder:
Package | Downloads |
---|---|
DccUtils.TypeFormatting
Package Description |
|
SystemCall
A command-parsing library inspired by Jinx. |
|
HjsonSharp
A customisable streaming parser for HJSON, JSON, JSONC and JSON5. |
|
BigReal
An arbitrary size and precision rational number stored using two BigIntegers. |
|
JsonhCs
JSON for Humans. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.4.1 | 539 | 3/25/2025 |
2.4.0 | 623 | 2/21/2025 |
2.3.1 | 103 | 2/20/2025 |
2.3.0 | 116 | 2/16/2025 |
2.2.0 | 1,626 | 1/25/2025 |
2.1.0 | 276 | 1/14/2025 |
2.0.0 | 102 | 1/12/2025 |
1.22.0 | 236 | 12/18/2024 |
1.21.1 | 1,589 | 11/8/2024 |
1.21.0 | 1,750 | 9/20/2024 |
1.20.0 | 9,682 | 5/2/2024 |
1.19.1 | 232 | 4/19/2024 |
1.19.0 | 6,488 | 3/2/2024 |
1.18.6 | 5,171 | 11/3/2023 |
1.18.5 | 2,401 | 10/19/2023 |
1.18.4 | 398 | 10/14/2023 |
1.18.3 | 4,055 | 9/22/2023 |
1.18.2 | 265 | 9/8/2023 |
1.18.1 | 42,004 | 8/10/2023 |
1.18.0 | 27,088 | 6/8/2023 |
1.17.0 | 3,290 | 4/13/2023 |
1.16.0 | 390 | 3/28/2023 |
1.15.0 | 237 | 3/26/2023 |
1.14.0 | 260 | 3/25/2023 |
1.13.1 | 329 | 3/17/2023 |
1.13.0 | 39,766 | 3/4/2023 |
1.12.2 | 306 | 2/21/2023 |
1.12.0 | 1,072 | 1/9/2023 |
1.11.5 | 352 | 1/9/2023 |
1.11.4 | 355 | 1/7/2023 |
1.11.3 | 350 | 1/3/2023 |
1.11.2 | 352 | 1/3/2023 |
1.11.1 | 366 | 1/1/2023 |
1.11.0 | 349 | 1/1/2023 |
1.10.6 | 348 | 12/30/2022 |
1.10.5 | 336 | 12/29/2022 |
1.10.4 | 376 | 12/27/2022 |
1.10.3 | 343 | 12/26/2022 |
1.10.2 | 383 | 12/16/2022 |
1.10.1 | 420 | 11/28/2022 |
1.10.0 | 405 | 11/20/2022 |
1.9.0 | 406 | 11/18/2022 |
1.8.0 | 399 | 11/15/2022 |
1.7.0 | 397 | 11/12/2022 |
1.6.2 | 410 | 11/11/2022 |
1.6.1 | 421 | 11/11/2022 |
1.6.0 | 388 | 11/10/2022 |
1.5.1 | 410 | 11/5/2022 |
1.5.0 | 398 | 11/5/2022 |
1.4.1 | 421 | 11/4/2022 |
1.4.0 | 502 | 10/11/2022 |
1.3.0 | 502 | 7/25/2022 |
1.2.0 | 558 | 4/20/2022 |
1.1.0 | 532 | 4/16/2022 |
1.0.1 | 498 | 4/13/2022 |
1.0.0 | 506 | 4/12/2022 |
0.9.5 | 493 | 4/10/2022 |
0.9.4 | 530 | 4/9/2022 |
0.9.3 | 509 | 4/9/2022 |
0.9.2 | 489 | 4/7/2022 |
0.9.1 | 491 | 4/6/2022 |
0.9.0 | 538 | 4/4/2022 |