BinaryPrimitives.ReadInt32LittleEndian(ReadOnlySpan<Byte>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reads an Int32 from the beginning of a read-only span of bytes, as little endian.
public:
static int ReadInt32LittleEndian(ReadOnlySpan<System::Byte> source);
public static int ReadInt32LittleEndian(ReadOnlySpan<byte> source);
static member ReadInt32LittleEndian : ReadOnlySpan<byte> -> int
Public Shared Function ReadInt32LittleEndian (source As ReadOnlySpan(Of Byte)) As Integer
Parameters
- source
- ReadOnlySpan<Byte>
The read-only span to read.
Returns
The little endian value.
Exceptions
source is too small to contain an Int32.
Remarks
Reads exactly 4 bytes from the beginning of the span.