BinaryPrimitives.WriteInt32LittleEndian(Span<Byte>, Int32) Method

Definition

Writes an Int32 into a span of bytes, as little endian.

public:
 static void WriteInt32LittleEndian(Span<System::Byte> destination, int value);
public static void WriteInt32LittleEndian (Span<byte> destination, int value);
static member WriteInt32LittleEndian : Span<byte> * int -> unit
Public Shared Sub WriteInt32LittleEndian (destination As Span(Of Byte), value As Integer)

Parameters

destination
Span<Byte>

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

value
Int32

The value to write into the span of bytes.

Exceptions

destination is too small to contain an Int32.

Remarks

Writes exactly 4 bytes to the beginning of the span.

Applies to