BinaryPrimitives.ReadIntPtrLittleEndian(ReadOnlySpan<Byte>) Method

Definition

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

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

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

IntPtr

nativeint

The little endian value.

Exceptions

source is too small to contain a IntPtr.

Remarks

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

Applies to