ConvertToInt32 Method (Object) |
Converts the value of the specified object to a 32-bit signed integer.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public static int ToInt32(
Object value
)
Parameters
- value
- Type: SystemObject
An object that implements the IConvertible interface, or null.
Return Value
Type:
Int32A 32-bit signed integer equivalent to
value, or zero if
value is null.
Exceptions Exception | Condition |
---|
FormatException | value is not in an appropriate format. |
InvalidCastException | value does not implement the IConvertible interface. -or-The conversion is not supported. |
OverflowException | value represents a number that is less than MinValue or greater than MaxValue. |
See Also