NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Single.IsNegativeInfinity

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;

Parameters

f
The object to examine.

Return Value

true if the object represents negative infinity, otherwise false.

Remarks

The IsNegativeInfinity method is equivalent to NegativeInfinity.

In addition see CultureInfo, NumberFormatInfo, IsInfinity, IsPositiveInfinity, PositiveInfinity, IsNaN, and NaN.

See Also

Single Structure | Single Members | System Namespace