BinaryPrimitives.TryReadSingleBigEndian Method

Definition

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

public:
 static bool TryReadSingleBigEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] float % value);
public static bool TryReadSingleBigEndian (ReadOnlySpan<byte> source, out float value);
static member TryReadSingleBigEndian : ReadOnlySpan<byte> * single -> bool
Public Shared Function TryReadSingleBigEndian (source As ReadOnlySpan(Of Byte), ByRef value As Single) As Boolean

Parameters

source
ReadOnlySpan<Byte>

The read-only span of bytes to read.

value
Single

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 Single; otherwise, false.

Remarks

Reads exactly 4 bytes from the beginning of the span.

Applies to