EN
Ce contenu n’est pas disponible dans votre langue. Voici la version anglaise.
Convert.ToDecimal Method (Object, IFormatProvider)
May 02, 2013
Namespace:
System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Object
An Object that implements the IConvertible interface.
- provider
- Type: System.IFormatProvider
An IFormatProvider interface implementation that supplies culture-specific formatting information.
Return Value
Type: System.DecimalA Decimal number equivalent to the value of value, or zero if value is null.
| Exception | Condition |
|---|---|
| InvalidCastException | value does not implement IConvertible. |
The return value is the result of invoking the IConvertible.ToDecimal method of the underlying type of value.
provider enables the user to specify culture-specific conversion information about the contents of value. For example, if value is a String that represents a number, provider could supply culture-specific information about the notation used to represent that number.
The base types ignore provider; however, it is honored if value is a user-defined type that implements the IConvertible interface.