Method Append
Append(string)
Appends a string, auto-detecting ASCII vs Unicode. ASCII strings use a fast truncation path; Unicode strings are UTF-8 encoded.
public void Append(string text)
Parameters
textstring
Append(ReadOnlySpan<char>)
Appends a char span as UTF-8 encoded bytes.
public void Append(ReadOnlySpan<char> text)
Parameters
textReadOnlySpan<char>
Append(Utf8Buffer)
Appends the contents of another Utf8Buffer.
public void Append(Utf8Buffer other)
Parameters
otherUtf8Buffer