BinaryPrimitives.TryReadIntPtrLittleEndian Method

Definition

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

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

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
IntPtr

nativeint

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 IntPtr; otherwise, true.

Remarks

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

Applies to