Show / Hide Table of Contents

Class BufferWriterSlim

Provides extension methods for BufferWriterSlim<T> type.

Inheritance
Object
BufferWriterSlim
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: DotNext.Buffers
Assembly: DotNext.dll
Syntax
public static class BufferWriterSlim

Methods

| Improve this Doc View Source

CopyTo(BufferWriterSlim<Byte>, Stream)

Copies written bytes to the stream.

Declaration
public static void CopyTo(this in BufferWriterSlim<byte> builder, Stream output)
Parameters
Type Name Description
BufferWriterSlim<Byte> builder

The buffer builder.

Stream output

The output stream.

| Improve this Doc View Source

CopyTo(BufferWriterSlim<Char>, TextWriter)

Copies written characters to the text stream.

Declaration
public static void CopyTo(this in BufferWriterSlim<char> builder, TextWriter output)
Parameters
Type Name Description
BufferWriterSlim<Char> builder

The buffer builder.

TextWriter output

The output stream.

| Improve this Doc View Source

CopyTo(BufferWriterSlim<Char>, StringBuilder)

Copies written characters to string builder.

Declaration
public static void CopyTo(this in BufferWriterSlim<char> builder, StringBuilder output)
Parameters
Type Name Description
BufferWriterSlim<Char> builder

The buffer builder.

StringBuilder output

The string builder.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX