BinaryPrimitives.ReadHalfLittleEndian(ReadOnlySpan<Byte>) Method
In this article
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 Half from the beginning of a read-only span of bytes, as little endian.
public:
static Half ReadHalfLittleEndian(ReadOnlySpan<System::Byte> source);
public static Half ReadHalfLittleEndian(ReadOnlySpan<byte> source);
static member ReadHalfLittleEndian : ReadOnlySpan<byte> -> Half
Public Shared Function ReadHalfLittleEndian (source As ReadOnlySpan(Of Byte)) As Half
- source
- ReadOnlySpan<Byte>
The read-only span to read.
The little endian value.
source
is too small to contain a Half.
Reads exactly 2 bytes from the beginning of the span.