BinaryPrimitives.ReadUInt128LittleEndian(ReadOnlySpan<Byte>) Method

Definition

Important

This API is not CLS-compliant.

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

public:
 static UInt128 ReadUInt128LittleEndian(ReadOnlySpan<System::Byte> source);
[System.CLSCompliant(false)]
public static UInt128 ReadUInt128LittleEndian (ReadOnlySpan<byte> source);
[<System.CLSCompliant(false)>]
static member ReadUInt128LittleEndian : ReadOnlySpan<byte> -> UInt128
Public Shared Function ReadUInt128LittleEndian (source As ReadOnlySpan(Of Byte)) As UInt128

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

The little endian value.

Attributes

Exceptions

source is too small to contain a UInt128.

Remarks

Reads exactly 16 bytes from the beginning of the span.

Applies to