Appending to StringBuilder by Unicode code point?
What might be the most efficient way to append a unicode code point (int32) to a StringBuilder, taking into account I need it to work on Framework.
7 Replies
Char.ConvertFromUtf32(Int32)
?That allocates a string[]
Which would be very heavy when working with ... large amounts of text.
I kinda just ended up, so far, doing it myself, writing 1 or 2 chars to a Span<char>, then appending that.
https://github.com/microsoft/referencesource/blob/master/mscorlib/system/char.cs#L921-L940
copy this but replace the array with
char* surrogate = stackalloc char[2];
then use Append(char*, int)
I basically did that though without copying it.
well. that is probably the most efficient way of doing it
Figured.