BigInteger Explicit  Conversion (BigInteger to SByte)

Converts a BigInteger to a SByte value.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static explicit operator sbyte (
	BigInteger value
)

Parameters

value  BigInteger
The BigInteger to convert.

Return Value

SByte
The signed byte that is contained in the 8 least significant bits of value.

Remarks

This method never throws an exception.

See Also