Table of Contents

Method TryReadBigEndian

Namespace
Zyl.VectorTraits.ExTypes
Assembly
VectorTraits.dll

TryReadBigEndian(ReadOnlySpan<byte>, bool, out ExInt128)

Tries to read a two's complement number from a span, in big-endian format, and convert it to an instance of the current type.

public static bool TryReadBigEndian(ReadOnlySpan<byte> source, bool isUnsigned, out ExInt128 value)

Parameters

source ReadOnlySpan<byte>

The span from which the two's complement number should be read.

isUnsigned bool

true if source represents an unsigned two's complement number; otherwise, false to indicate it represents a signed two's complement number.

value ExInt128

On return, contains the value read from source or default if a value could not be read.

Returns

bool

true if the value was succesfully read from source; otherwise, false.