EN
Ce contenu n’est pas disponible dans votre langue. Voici la version anglaise.
Convert.ToDecimal Method (Byte)
May 02, 2013
Converts the value of the specified 8-bit unsigned integer to the equivalent Decimal number.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Byte
An 8-bit unsigned integer.
The following code sample illustrates the conversion of a Byte value to a Decimal one, using ToDecimal.
public void ConvertByteDecimal(byte byteVal) { decimal decimalVal; // Byte to decimal conversion will not overflow. decimalVal = System.Convert.ToDecimal(byteVal); outputBlock.Text += String.Format("The byte as a decimal is {0}.", decimalVal) + "\n"; // Decimal to byte conversion can overflow. try { byteVal = System.Convert.ToByte(decimalVal); outputBlock.Text += String.Format("The Decimal as a byte is {0}.", byteVal) + "\n"; } catch (System.OverflowException) { outputBlock.Text += String.Format( "The decimal value is too large for a byte.") + "\n"; } }