Determines whether the specified object represents negative infinity.
[Visual Basic] Public Shared Function IsNegativeInfinity( _ ByVal f As Single _ ) As Boolean [C#] public static bool IsNegativeInfinity( float f ); [C++] public: static bool IsNegativeInfinity( float f ); [JScript] public static function IsNegativeInfinity( f : float ) : Boolean;
true if the object represents negative infinity, otherwise false.
The IsNegativeInfinity method is equivalent to NegativeInfinity.
In addition see CultureInfo, NumberFormatInfo, IsInfinity, IsPositiveInfinity, PositiveInfinity, IsNaN, and NaN.