BinaryPrimitives.ReadInt64LittleEndian(ReadOnlySpan<Byte>) Method

Definition

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

public:
 static long ReadInt64LittleEndian(ReadOnlySpan<System::Byte> source);
public static long ReadInt64LittleEndian (ReadOnlySpan<byte> source);
static member ReadInt64LittleEndian : ReadOnlySpan<byte> -> int64
Public Shared Function ReadInt64LittleEndian (source As ReadOnlySpan(Of Byte)) As Long

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

The little endian value.

Exceptions

source is too small to contain an Int64.

Remarks

Reads exactly 8 bytes from the beginning of the span.

Applies to