BinaryPrimitives.ReadHalfBigEndian(ReadOnlySpan<Byte>) Method

Definition

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

public:
 static Half ReadHalfBigEndian(ReadOnlySpan<System::Byte> source);
public static Half ReadHalfBigEndian (ReadOnlySpan<byte> source);
static member ReadHalfBigEndian : ReadOnlySpan<byte> -> Half
Public Shared Function ReadHalfBigEndian (source As ReadOnlySpan(Of Byte)) As Half

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

The big endian value.

Exceptions

source is too small to contain a Half.

Remarks

Reads exactly 2 bytes from the beginning of the span.

Applies to