Char array. A C# char array stores string data. Each character can be accessed (and changed) without copying the rest of the characters. It enables optimizations.
A char array is an alternative to using StringBuilder for quickly creating string data. We evaluate StringBuilder and compare it to character arrays.
Benchmark, char array. Character arrays can be used to store character data such as letters or numbers. Here we append characters one-by-one to an array using the char data type.
Note Remember that chars in the C# language are 2 bytes. So for each char, 2 bytes are copied on the stack.
Version 1 This version uses a char array. We assign each index to the char we want to append. We use the string constructor.
Version 2 We use StringBuilder here. With StringBuilder, you could keep appending items to the buffer after the 100th char.
Result With .NET 5 on Linux (in 2021) this benchmark still shows that using a char array is much faster than the StringBuilder.
using System;
using System.Diagnostics;
using System.Text;
const int _max = 1000000;
var s1 = Stopwatch.StartNew();
// Version 1: use a new char array.
for (int i = 0; i < _max; i++)
{
char[] buffer = new char[100];
for (int v = 0; v < 100; v++)
{
buffer[v] = 'a';
}
string result = new string(buffer);
}
s1.Stop();
var s2 = Stopwatch.StartNew();
// Version 2: use a StringBuilder.
for (int i = 0; i < _max; i++)
{
StringBuilder builder = new StringBuilder(100);
for (int v = 0; v < 100; v++)
{
builder.Append('a');
}
string result = builder.ToString();
}
s2.Stop();
Console.WriteLine(((double)(s1.Elapsed.TotalMilliseconds * 1000000) / _max).ToString("0.00 ns"));
Console.WriteLine(((double)(s2.Elapsed.TotalMilliseconds * 1000000) / _max).ToString("0.00 ns")); 86.30 ns char array
288.69 ns StringBuilder
Notes, performance. Char arrays are faster because they have fewer features. Meanwhile StringBuilder handles many cases and has many methods.
And StringBuilder is easy to use and a great optimization, but it is far slower in simple cases. It can help in real programs.
Note We used char arrays as an improvement in the alphanumeric sorting algorithm. This improved performance.
Result Char arrays can be around 7 times faster on certain tasks. Char buffers have a big performance advantage.
A discussion. Using char arrays allows us to use more lower-level algorithms with greater performance. The char array code forces us to have more "coding discipline."
And It is more exact if you can enforce the constraints of char arrays (like the fixed length).
Summary. Using char arrays is better when you know in advance the number of characters. StringBuilder is fast and useful, but using char arrays is sometimes more appropriate.
Dot Net Perls is a collection of tested code examples. Pages are continually updated to stay current, with code correctness a top priority.
Sam Allen is passionate about computer languages. In the past, his work has been recommended by Apple and Microsoft and he has studied computers at a selective university in the United States.
This page was last updated on Sep 21, 2023 (edit).