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

Definition

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

public:
 static bool TryWriteInt128BigEndian(Span<System::Byte> destination, Int128 value);
public static bool TryWriteInt128BigEndian (Span<byte> destination, Int128 value);
static member TryWriteInt128BigEndian : Span<byte> * Int128 -> bool
Public Shared Function TryWriteInt128BigEndian (destination As Span(Of Byte), value As Int128) As Boolean

Parameters

destination
Span<Byte>

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

value
Int128

The value to write into the span of bytes.

Returns

false if the span is too small to contain the value; otherwise, true.

Remarks

Writes exactly 16 bytes to the beginning of the span.

Applies to