BinaryPrimitives.ReadInt32BigEndian(ReadOnlySpan<Byte>) Method

Definition

Reads an Int32 from the beginning of a read-only span of bytes, as big endian.

public:
 static int ReadInt32BigEndian(ReadOnlySpan<System::Byte> source);
public static int ReadInt32BigEndian (ReadOnlySpan<byte> source);
static member ReadInt32BigEndian : ReadOnlySpan<byte> -> int
Public Shared Function ReadInt32BigEndian (source As ReadOnlySpan(Of Byte)) As Integer

Parameters

source
ReadOnlySpan<Byte>

The read-only span to read.

Returns

The big endian value.

Exceptions

source is too small to contain an Int32.

Remarks

Reads exactly 4 bytes from the beginning of the span.

Applies to