BinaryPrimitives.ReadInt16BigEndian(ReadOnlySpan<Byte>) Method

Definition

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

public:
 static short ReadInt16BigEndian(ReadOnlySpan<System::Byte> source);
public static short ReadInt16BigEndian (ReadOnlySpan<byte> source);
static member ReadInt16BigEndian : ReadOnlySpan<byte> -> int16
Public Shared Function ReadInt16BigEndian (source As ReadOnlySpan(Of Byte)) As Short

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

The big endian value.

Exceptions

source is too small to contain an Int16.

Remarks

Reads exactly 2 bytes from the beginning of the span.

Applies to