BinaryPrimitives.TryReadHalfBigEndian(ReadOnlySpan<Byte>, Half) 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 Half from the beginning of a read-only span of bytes, as big endian.
public:
static bool TryReadHalfBigEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] Half % value);
public static bool TryReadHalfBigEndian(ReadOnlySpan<byte> source, out Half value);
static member TryReadHalfBigEndian : ReadOnlySpan<byte> * Half -> bool
Public Shared Function TryReadHalfBigEndian (source As ReadOnlySpan(Of Byte), ByRef value As Half) As Boolean
Parameters
- source
- ReadOnlySpan<Byte>
The read-only span of bytes to read.
- value
- Half
When this method returns, contains the value read out of the read-only span of bytes, as big endian.
Returns
true if the span is large enough to contain a Half; otherwise, false.
Remarks
Reads exactly 2 bytes from the beginning of the span.