BinaryPrimitives.TryReadInt64LittleEndian Method

Definition

Reads an Int64 from the beginning of a read-only span of bytes, as little endian.

public:
 static bool TryReadInt64LittleEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] long % value);
public static bool TryReadInt64LittleEndian (ReadOnlySpan<byte> source, out long value);
static member TryReadInt64LittleEndian : ReadOnlySpan<byte> * int64 -> bool
Public Shared Function TryReadInt64LittleEndian (source As ReadOnlySpan(Of Byte), ByRef value As Long) As Boolean

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
Int64

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

Returns

true if the span is large enough to contain an Int64; otherwise, false.

Remarks

Reads exactly 8 bytes from the beginning of the span.

Applies to