BinaryPrimitives.TryWriteUInt16LittleEndian(Span<Byte>, UInt16) Method

Definition

Important

This API is not CLS-compliant.

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

public:
 static bool TryWriteUInt16LittleEndian(Span<System::Byte> destination, System::UInt16 value);
[System.CLSCompliant(false)]
public static bool TryWriteUInt16LittleEndian (Span<byte> destination, ushort value);
[<System.CLSCompliant(false)>]
static member TryWriteUInt16LittleEndian : Span<byte> * uint16 -> bool
Public Shared Function TryWriteUInt16LittleEndian (destination As Span(Of Byte), value As UShort) As Boolean

Parameters

destination
Span<Byte>

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

value
UInt16

The value to write into the span of bytes.

Returns

true if the span is large enough to contain a UInt16; otherwise, false.

Attributes

Remarks

Writes exactly 2 bytes to the beginning of the span.

Applies to