EN
Ce contenu n’est pas disponible dans votre langue. Voici la version anglaise.
Convert.ToInt16 Method (Object)
May 02, 2013
Converts the value of the specified Object to a 16-bit signed integer.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Object
An Object that implements the IConvertible interface or null.
Return Value
Type: System.Int16A 16-bit signed integer equivalent to the value of value, or zero if value is null.
| Exception | Condition |
|---|---|
| InvalidCastException | value does not implement IConvertible. |
If value is not null, this method wraps a call to the IConvertible.ToInt16 implementation of the underlying type of value.