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

Definition

Important

This API is not CLS-compliant.

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

public:
 static void WriteUInt16BigEndian(Span<System::Byte> destination, System::UInt16 value);
[System.CLSCompliant(false)]
public static void WriteUInt16BigEndian (Span<byte> destination, ushort value);
[<System.CLSCompliant(false)>]
static member WriteUInt16BigEndian : Span<byte> * uint16 -> unit
Public Shared Sub WriteUInt16BigEndian (destination As Span(Of Byte), value As UShort)

Parameters

destination
Span<Byte>

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

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.

Applies to