BinaryPrimitives.WriteInt128LittleEndian(Span<Byte>, Int128) Method

Definition

Writes a Int128 into a span of bytes, as little endian.

public:
 static void WriteInt128LittleEndian(Span<System::Byte> destination, Int128 value);
public static void WriteInt128LittleEndian (Span<byte> destination, Int128 value);
static member WriteInt128LittleEndian : Span<byte> * Int128 -> unit
Public Shared Sub WriteInt128LittleEndian (destination As Span(Of Byte), value As Int128)

Parameters

destination
Span<Byte>

The span of bytes where the value is to be written, as little endian.

value
Int128

The value to write into the span of bytes.

Exceptions

destination is too small to contain a Int128.

Remarks

Writes exactly 16 bytes to the beginning of the span.

Applies to