BinaryPrimitives.TryReadInt128LittleEndian Method

Definition

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

public:
 static bool TryReadInt128LittleEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] Int128 % value);
public static bool TryReadInt128LittleEndian (ReadOnlySpan<byte> source, out Int128 value);
static member TryReadInt128LittleEndian : ReadOnlySpan<byte> * Int128 -> bool
Public Shared Function TryReadInt128LittleEndian (source As ReadOnlySpan(Of Byte), ByRef value As Int128) As Boolean

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
Int128

When this method returns, contains the value read out of the read-only span of bytes, as little endian.

Returns

false if the span is too small to contain a Int128; otherwise, true

Remarks

Reads exactly 16 bytes from the beginning of the span.

Applies to