BinaryPrimitives.ReadIntPtrBigEndian(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.
Reads a IntPtr from the beginning of a read-only span of bytes, as big endian.
public:
static IntPtr ReadIntPtrBigEndian(ReadOnlySpan<System::Byte> source);
public static IntPtr ReadIntPtrBigEndian(ReadOnlySpan<byte> source);
static member ReadIntPtrBigEndian : ReadOnlySpan<byte> -> nativeint
Public Shared Function ReadIntPtrBigEndian (source As ReadOnlySpan(Of Byte)) As IntPtr
Parameters
- source
- ReadOnlySpan<Byte>
The read-only span to read.
Returns
nativeint
The big 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.