BinaryPrimitives.TryReadUInt32LittleEndian Method

Definition

Important

This API is not CLS-compliant.

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

public:
 static bool TryReadUInt32LittleEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] System::UInt32 % value);
[System.CLSCompliant(false)]
public static bool TryReadUInt32LittleEndian (ReadOnlySpan<byte> source, out uint value);
[<System.CLSCompliant(false)>]
static member TryReadUInt32LittleEndian : ReadOnlySpan<byte> * uint32 -> bool
Public Shared Function TryReadUInt32LittleEndian (source As ReadOnlySpan(Of Byte), ByRef value As UInteger) As Boolean

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
UInt32

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 a UInt32; otherwise, false.

Attributes

Remarks

Reads exactly 4 bytes from the beginning of the span.

Applies to