BinaryPrimitives.TryReadUIntPtrBigEndian Method

Definition

Important

This API is not CLS-compliant.

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

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

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
UIntPtr

unativeint

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

Returns

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

Attributes

Remarks

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

Applies to