BinaryPrimitives.TryReadSingleLittleEndian Method

Definition

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

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

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
Single

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 a Single; otherwise, false.

Remarks

Reads exactly 4 bytes from the beginning of the span.

Applies to