BinaryPrimitives.TryWriteInt16LittleEndian(Span<Byte>, Int16) 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.
Writes an Int16 into a span of bytes, as little endian.
public:
static bool TryWriteInt16LittleEndian(Span<System::Byte> destination, short value);
public static bool TryWriteInt16LittleEndian(Span<byte> destination, short value);
static member TryWriteInt16LittleEndian : Span<byte> * int16 -> bool
Public Shared Function TryWriteInt16LittleEndian (destination As Span(Of Byte), value As Short) As Boolean
Parameters
- 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.