Decimal.ToByte Method
.NET Framework 4.5
Converts the value of the specified Decimal to the equivalent 8-bit unsigned integer.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Decimal
The decimal number to convert.
| Exception | Condition |
|---|---|
| OverflowException | value is less than Byte.MinValue or greater than Byte.MaxValue. |
The following example uses the ToByte method to convert decimal numbers to Byte 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 { byte number = Decimal.ToByte(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 // 255.999 --> 255 // OverflowException: 256 // 127.999 --> 127 // 128 --> 128 // -0.999 --> 0 // OverflowException: -1 // OverflowException: -128.999 // 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.