Table of Contents

Struct BitSequenceWriter

Namespace
ZeroC.Slice
Assembly
ZeroC.Slice.dll

Provides a method for writing a bit sequence.

public ref struct BitSequenceWriter
Inherited Members

Remarks

This struct is returned by GetBitSequenceWriter(int) to write the bit sequence associated with a Slice type.

Methods

Write(bool)

Writes the bit at the current position in the underlying bit sequence and moves to the next position.

public void Write(bool value)

Parameters

value bool

true to set the bit and false to unset it.

See Also