BinaryPrimitives.WriteUInt16LittleEndian(Span<Byte>, UInt16) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Important
This API is not CLS-compliant.
Writes a UInt16 into a span of bytes, as little endian.
public:
static void WriteUInt16LittleEndian(Span<System::Byte> destination, System::UInt16 value);
[System.CLSCompliant(false)]
public static void WriteUInt16LittleEndian(Span<byte> destination, ushort value);
[<System.CLSCompliant(false)>]
static member WriteUInt16LittleEndian : Span<byte> * uint16 -> unit
Public Shared Sub WriteUInt16LittleEndian (destination As Span(Of Byte), value As UShort)
Parameters
- value
- UInt16
The value to write into the span of bytes.
- Attributes
Exceptions
destination is too small to contain a UInt16.
Remarks
Writes exactly 2 bytes to the beginning of the span.