BinaryPrimitives.ReadInt128BigEndian(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 a Int128 from the beginning of a read-only span of bytes, as big endian.
public:
static Int128 ReadInt128BigEndian(ReadOnlySpan<System::Byte> source);
public static Int128 ReadInt128BigEndian(ReadOnlySpan<byte> source);
static member ReadInt128BigEndian : ReadOnlySpan<byte> -> Int128
Public Shared Function ReadInt128BigEndian (source As ReadOnlySpan(Of Byte)) As Int128
Parameters
- source
- ReadOnlySpan<Byte>
The read-only span to read.
Returns
The big endian value.
Exceptions
source is too small to contain a Int128.
Remarks
Reads exactly 16 bytes from the beginning of the span.