BinaryPrimitives.TryReadDoubleLittleEndian Method

Definition

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

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

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
Double

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

Remarks

Reads exactly 8 bytes from the beginning of the span.

Applies to