Table of Contents

Method Append

Namespace
Terminal.Gui.Drivers
Assembly
Terminal.Gui.dll

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

text string

Append(ReadOnlySpan<char>)

Appends a char span as UTF-8 encoded bytes.

public void Append(ReadOnlySpan<char> text)

Parameters

text ReadOnlySpan<char>

Append(Utf8Buffer)

Appends the contents of another Utf8Buffer.

public void Append(Utf8Buffer other)

Parameters

other Utf8Buffer