BinaryPrimitives.WriteInt16LittleEndian(Span<Byte>, Int16) Method

Definition

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

public:
 static void WriteInt16LittleEndian(Span<System::Byte> destination, short value);
public static void WriteInt16LittleEndian (Span<byte> destination, short value);
static member WriteInt16LittleEndian : Span<byte> * int16 -> unit
Public Shared Sub WriteInt16LittleEndian (destination As Span(Of Byte), value As Short)

Parameters

destination
Span<Byte>

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

value
Int16

The value to write into the span of bytes.

Exceptions

destination is too small to contain an Int16.

Remarks

Writes exactly 2 bytes to the beginning of the span.

Applies to