BinaryPrimitives.ReadInt128LittleEndian(ReadOnlySpan<Byte>) Method

Definition

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

public:
 static Int128 ReadInt128LittleEndian(ReadOnlySpan<System::Byte> source);
public static Int128 ReadInt128LittleEndian (ReadOnlySpan<byte> source);
static member ReadInt128LittleEndian : ReadOnlySpan<byte> -> Int128
Public Shared Function ReadInt128LittleEndian (source As ReadOnlySpan(Of Byte)) As Int128

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

The little endian value.

Exceptions

source is too small to contain a Int128.

Remarks

Reads exactly 16 bytes from the beginning of the span.

Applies to