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

Definition

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

public:
 static bool TryWriteInt16BigEndian(Span<System::Byte> destination, short value);
public static bool TryWriteInt16BigEndian (Span<byte> destination, short value);
static member TryWriteInt16BigEndian : Span<byte> * int16 -> bool
Public Shared Function TryWriteInt16BigEndian (destination As Span(Of Byte), value As Short) As Boolean

Parameters

destination
Span<Byte>

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

value
Int16

The value to write into the span of bytes.

Returns

true if the span is large enough to contain an Int16; otherwise, false.

Remarks

Writes exactly 2 bytes to the beginning of the span.

Applies to