BigInteger Explicit Conversion (BigInteger to SByte)
Defines an explicit conversion of a BigInteger object to a signed 8-bit value.
This API is not CLS-compliant. The CLS-compliant alternative is System.Int16. Namespace: System.Numerics
Assembly: System.Numerics (in System.Numerics.dll)
Parameters
- value
- Type: System.Numerics.BigInteger
The value to convert to a signed 8-bit value.
| Exception | Condition |
|---|---|
| OverflowException | value is less than SByte.MinValue. -or- value is greater than SByte.MaxValue. |
The overloads of the Explicit method define the types to which or from which a BigInteger object can be converted. Language compilers do not perform this conversion automatically because it can involve data loss. Instead, they perform the conversion only if a casting operator (in C#) or a conversion function (such as CType or CSByte in Visual Basic) is used. Otherwise, they display a compiler error.
Because this operation defines a narrowing conversion, it can throw an OverflowException at run time if the BigInteger value is outside the range of the SByte data type. There is no loss of precision in the resulting SByte value if the conversion is successful.
The following example illustrates the conversion of BigInteger values to SByte values. It also handles an OverflowException that is thrown because the BigInteger value is outside the range of the SByte data type.
// BigInteger to SByte conversion. BigInteger goodSByte = BigInteger.MinusOne; BigInteger badSByte = -130; sbyte sByteFromBigInteger; // Successful conversion using cast operator. sByteFromBigInteger = (sbyte) goodSByte; Console.WriteLine(sByteFromBigInteger); // Handle conversion that should result in overflow. try { sByteFromBigInteger = (sbyte) badSByte; Console.WriteLine(sByteFromBigInteger); } catch (OverflowException e) { Console.WriteLine("Unable to convert {0}:\n {1}", badSByte, e.Message); } Console.WriteLine();
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.