BinaryPrimitives.TryWriteDoubleLittleEndian(Span<Byte>, Double) Method

Definition

Writes a Double into a span of bytes, as little endian.

public:
 static bool TryWriteDoubleLittleEndian(Span<System::Byte> destination, double value);
public static bool TryWriteDoubleLittleEndian (Span<byte> destination, double value);
static member TryWriteDoubleLittleEndian : Span<byte> * double -> bool
Public Shared Function TryWriteDoubleLittleEndian (destination As Span(Of Byte), value As Double) As Boolean

Parameters

destination
Span<Byte>

The span of bytes where the value is to be written, as little endian.

value
Double

The value to write into the span of bytes.

Returns

true if the span is large enough to contain a Double; otherwise, false.

Remarks

Writes exactly 8 bytes to the beginning of the span.

Applies to