Decimal.ToSByte Method
.NET Framework 4.5
Converts the value of the specified Decimal to the equivalent 8-bit signed integer.
This API is not CLS-compliant. The CLS-compliant alternative is ToInt16. Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Decimal
The decimal number to convert.
| Exception | Condition |
|---|---|
| OverflowException | value is less than SByte.MinValue or greater than SByte.MaxValue. |
The following example uses the ToSByte method to convert decimal numbers to SByte values.
using System; class Example { public static void Main( ) { decimal[] values = { 123m, new Decimal(78000, 0, 0, false, 3), 78.999m, 255.999m, 256m, 127.999m, 128m, -0.999m, -1m, -128.999m, -129m }; foreach (var value in values) { try { sbyte number = Decimal.ToSByte(value); Console.WriteLine("{0} --> {1}", value, number); } catch (OverflowException e) { Console.WriteLine("{0}: {1}", e.GetType().Name, value); } } } } // The example displays the following output: // 78 --> 78 // 78.000 --> 78 // 78.999 --> 78 // OverflowException: 255.999 // OverflowException: 256 // 127.999 --> 127 // OverflowException: 128 // -0.999 --> 0 // -1 --> -1 // -128.999 --> -128 // OverflowException: -129
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.