BinaryPrimitives.WriteUInt64LittleEndian(Span<Byte>, UInt64) Method

Definition

Important

This API is not CLS-compliant.

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

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

Parameters

destination
Span<Byte>

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

value
UInt64

The value to write into the span of bytes.

Attributes

Exceptions

destination is too small to contain a UInt64.

Remarks

Writes exactly 8 bytes to the beginning of the span.

Applies to