BinaryPrimitives.ReadUIntPtrBigEndian(ReadOnlySpan<Byte>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 UIntPtr ReadUIntPtrBigEndian(ReadOnlySpan<System::Byte> source);
[System.CLSCompliant(false)]
public static UIntPtr ReadUIntPtrBigEndian(ReadOnlySpan<byte> source);
[<System.CLSCompliant(false)>]
static member ReadUIntPtrBigEndian : ReadOnlySpan<byte> -> unativeint
Public Shared Function ReadUIntPtrBigEndian (source As ReadOnlySpan(Of Byte)) As UIntPtr
Parameters
- source
- ReadOnlySpan<Byte>
The read-only span to read.
Returns
unativeint
The big 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.