EN
Ce contenu n’est pas disponible dans votre langue. Voici la version anglaise.
Ce sujet n'a pas encore été évalué - Évaluez ce sujet

Convert.ToDecimal Method (Byte)

May 02, 2013

Converts the value of the specified 8-bit unsigned integer to the equivalent Decimal number.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
public static decimal ToDecimal(
	byte value
)

Parameters

value
Type: System.Byte
An 8-bit unsigned integer.

Return Value

Type: System.Decimal
The Decimal number equivalent to the value of value.

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";
   }
}


Windows Phone OS

Supported in: 8.0, 7.1, 7.0

Windows Phone

Cela vous a-t-il été utile ?
(1500 caractères restants)
© 2013 Microsoft. Tous droits réservés.