BinaryPrimitives.ReadUInt64BigEndian(ReadOnlySpan<Byte>) Method

Definition

Important

This API is not CLS-compliant.

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

public:
 static System::UInt64 ReadUInt64BigEndian(ReadOnlySpan<System::Byte> source);
[System.CLSCompliant(false)]
public static ulong ReadUInt64BigEndian (ReadOnlySpan<byte> source);
[<System.CLSCompliant(false)>]
static member ReadUInt64BigEndian : ReadOnlySpan<byte> -> uint64
Public Shared Function ReadUInt64BigEndian (source As ReadOnlySpan(Of Byte)) As ULong

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

Returns

The big endian value.

Attributes

Exceptions

source is too small to contain a UInt64.

Remarks

Reads exactly 8 bytes from the beginning of the span.

Applies to