BinaryPrimitives.ReadUInt32LittleEndian(ReadOnlySpan<Byte>) 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 System::UInt32 ReadUInt32LittleEndian(ReadOnlySpan<System::Byte> source);
[System.CLSCompliant(false)]
public static uint ReadUInt32LittleEndian (ReadOnlySpan<byte> source);
[<System.CLSCompliant(false)>]
static member ReadUInt32LittleEndian : ReadOnlySpan<byte> -> uint32
Public Shared Function ReadUInt32LittleEndian (source As ReadOnlySpan(Of Byte)) As UInteger

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

Returns

The little endian value.

Attributes

Exceptions

source is too small to contain a UInt32.

Remarks

Reads exactly 4 bytes from the beginning of the span.

Applies to