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!

Double.IsNegativeInfinity

Determines whether the specified Double is negative infinity.

[Visual Basic]
Public Shared Function IsNegativeInfinity( _
   ByVal d As Double _
) As Boolean
[C#]
public static bool IsNegativeInfinity(
   double d
);
[C++]
public: static bool IsNegativeInfinity(
   double d
);
[JScript]
public static function IsNegativeInfinity(
   d : double
) : Boolean;

Parameters

d
The Double to examine.

Return Value

true if the number equals NegativeInfinity; otherwise, false.

Remarks

IsNegativeInfinity determines whether this instance of the Double is the same as the data member NegativeInfinity and returns the evaluation.

(In addition see CultureInfo, NumberFormatInfo, PositiveInfinity, and NaN.)

See Also

Double Structure | Double Members | System Namespace