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

Definition

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

public:
 static void WriteDoubleLittleEndian(Span<System::Byte> destination, double value);
public static void WriteDoubleLittleEndian (Span<byte> destination, double value);
static member WriteDoubleLittleEndian : Span<byte> * double -> unit
Public Shared Sub WriteDoubleLittleEndian (destination As Span(Of Byte), value As Double)

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.

Exceptions

destination is too small to contain a Double.

Remarks

Writes exactly 8 bytes to the beginning of the span.

Applies to