BinaryPrimitives.WriteUInt32LittleEndian(Span<Byte>, UInt32) Method

Definition

Important

This API is not CLS-compliant.

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

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

Parameters

destination
Span<Byte>

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

value
UInt32

The value to write into the span of bytes.

Attributes

Exceptions

destination is too small to contain a UInt32.

Remarks

Writes exactly 4 bytes to the beginning of the span.

Applies to