Edit

Share via


BinaryPrimitives.ReadHalfLittleEndian(ReadOnlySpan<Byte>) Method

Definition

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

C#
public static Half ReadHalfLittleEndian(ReadOnlySpan<byte> source);

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

The little endian value.

Exceptions

source is too small to contain a Half.

Remarks

Reads exactly 2 bytes from the beginning of the span.

Applies to