BinaryPrimitives.TryReadUInt64BigEndian 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 bool TryReadUInt64BigEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] System::UInt64 % value);
[System.CLSCompliant(false)]
public static bool TryReadUInt64BigEndian (ReadOnlySpan<byte> source, out ulong value);
[<System.CLSCompliant(false)>]
static member TryReadUInt64BigEndian : ReadOnlySpan<byte> * uint64 -> bool
Public Shared Function TryReadUInt64BigEndian (source As ReadOnlySpan(Of Byte), ByRef value As ULong) As Boolean

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
UInt64

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

Returns

true if the span is large enough to contain a UInt64; otherwise, false.

Attributes

Remarks

Reads exactly 8 bytes from the beginning of the span.

Applies to