BinaryPrimitives.ReadSingleLittleEndian(ReadOnlySpan<Byte>) Method

Definition

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

public:
 static float ReadSingleLittleEndian(ReadOnlySpan<System::Byte> source);
public static float ReadSingleLittleEndian (ReadOnlySpan<byte> source);
static member ReadSingleLittleEndian : ReadOnlySpan<byte> -> single
Public Shared Function ReadSingleLittleEndian (source As ReadOnlySpan(Of Byte)) As Single

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

The little endian value.

Exceptions

source is too small to contain a Single.

Remarks

Reads exactly 4 bytes from the beginning of the span.

Applies to