Converts a Single to an Int32.
[Visual Basic] Overloads Public Shared Function ToInt32( _ ByVal value As Single _ ) As Integer [C#] public static int ToInt32( float value ); [C++] public: static int ToInt32( float value ); [JScript] public static function ToInt32( value : float ) : int;
value rounded to the nearest integer. If value is exactly halfway between two whole numbers, this method returns the the integer that is even (i.e. 4.5 is converted to 4, and 5.5 is converted to 6).
Exception Type | Condition |
---|---|
OverflowException | is thrown if value is greater than Int32.MaxValue or less than Int32.MinValue. |
Convert Class | Convert Members | System Namespace | Convert.ToInt32 Overload List