Skip to content

ByteReadOnlySpanExtensions.GetUInt32 Method

Overloads

Name Description
GetUInt32(ReadOnlySpan<Byte>) Reads a little-endian UInt32 from a read-only span of bytes.
GetUInt32(ReadOnlySpan<Byte>, Endian) Reads a UInt32 from a read-only span of bytes using the specified endianness.

GetUInt32(ReadOnlySpan<Byte>)

Reads a little-endian UInt32 from a read-only span of bytes.

public static uint GetUInt32(this ReadOnlySpan<Byte> bytes);

View source

Parameters

Name Type Description
bytes ReadOnlySpan<Byte>

Returns

UInt32

The UInt32 value.

GetUInt32(ReadOnlySpan<Byte>, Endian)

Reads a UInt32 from a read-only span of bytes using the specified endianness.

public static uint GetUInt32(this ReadOnlySpan<Byte> bytes, Endian endian);

View source

Parameters

Name Type Description
bytes ReadOnlySpan<Byte>
endian Endian The endianness to use.

Returns

UInt32

The UInt32 value.