BinaryPrimitives.TryWriteUInt128LittleEndian Method

Definition

Important

This API is not CLS-compliant.

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

public:
 static bool TryWriteUInt128LittleEndian(Span<System::Byte> destination, UInt128 value);
[System.CLSCompliant(false)]
public static bool TryWriteUInt128LittleEndian (Span<byte> destination, UInt128 value);
[<System.CLSCompliant(false)>]
static member TryWriteUInt128LittleEndian : Span<byte> * UInt128 -> bool
Public Shared Function TryWriteUInt128LittleEndian (destination As Span(Of Byte), value As UInt128) As Boolean

Parameters

destination
Span<Byte>

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

value
UInt128

The value to write into the span of bytes.

Returns

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

Attributes

Remarks

Writes exactly 16 bytes to the beginning of the span.

Applies to