BinaryPrimitives.TryReadInt32LittleEndian 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 bool TryReadInt32LittleEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] int % value);
public static bool TryReadInt32LittleEndian(ReadOnlySpan<byte> source, out int value);
static member TryReadInt32LittleEndian : ReadOnlySpan<byte> * int -> bool
Public Shared Function TryReadInt32LittleEndian (source As ReadOnlySpan(Of Byte), ByRef value As Integer) As Boolean
Parameters
- source
- ReadOnlySpan<Byte>
The read-only span of bytes to read.
- value
- Int32
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 Int32; otherwise, false.
Remarks
Reads exactly 4 bytes from the beginning of the span.