BinaryPrimitives.ReadUIntPtrLittleEndian(ReadOnlySpan<Byte>) Method

Definition

Important

This API is not CLS-compliant.

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

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

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

UIntPtr

unativeint

The little endian value.

Attributes

Exceptions

source is too small to contain a UIntPtr.

Remarks

Reads exactly 4 bytes on 32-bit platforms or 8 bytes on 64-bit platforms from the beginning of the span.

Applies to