BinaryPrimitives.TryReadInt16LittleEndian Method

Definition

Reads an Int16 from the beginning of a read-only span of bytes, as little endian.

public:
 static bool TryReadInt16LittleEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] short % value);
public static bool TryReadInt16LittleEndian (ReadOnlySpan<byte> source, out short value);
static member TryReadInt16LittleEndian : ReadOnlySpan<byte> * int16 -> bool
Public Shared Function TryReadInt16LittleEndian (source As ReadOnlySpan(Of Byte), ByRef value As Short) As Boolean

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
Int16

When this method returns, contains the value read out of the read-only span of bytes, as little endian.

Returns

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

Remarks

Reads exactly 2 bytes from the beginning of the span.

Applies to