BinaryPrimitives.WriteUInt128BigEndian(Span<Byte>, UInt128) Method

Definition

Important

This API is not CLS-compliant.

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

public:
 static void WriteUInt128BigEndian(Span<System::Byte> destination, UInt128 value);
[System.CLSCompliant(false)]
public static void WriteUInt128BigEndian (Span<byte> destination, UInt128 value);
[<System.CLSCompliant(false)>]
static member WriteUInt128BigEndian : Span<byte> * UInt128 -> unit
Public Shared Sub WriteUInt128BigEndian (destination As Span(Of Byte), value As UInt128)

Parameters

destination
Span<Byte>

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

value
UInt128

The value to write into the span of bytes.

Attributes

Exceptions

destination is too small to contain a UInt128.

Remarks

Writes exactly 16 bytes to the beginning of the span.

Applies to