An allocation-friendly builder for composing ANSI output into a single string.
public sealed class AnsiBuilder : IBufferWriter<char>, IDisposable
This type implements IBufferWriter<T> so it can be used as an output target for AnsiWriter. Internally it rents a buffer from System.Buffers.ArrayPool`1 and returns it on Dispose().
kind:method, kind:property, kind:ctor. Press Esc to clear.LengthGets the number of characters written into the builder.Append(ReadOnlySpan<Char>)Appends the specified text.UnsafeAsSpan()Returns a span representing the current contents of the buffer without performing safety checks.