BinaryPrimitives.TryReadDoubleBigEndian Method

Definition

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

public:
 static bool TryReadDoubleBigEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] double % value);
public static bool TryReadDoubleBigEndian (ReadOnlySpan<byte> source, out double value);
static member TryReadDoubleBigEndian : ReadOnlySpan<byte> * double -> bool
Public Shared Function TryReadDoubleBigEndian (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 big 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