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.IsPositiveInfinity

Determines whether the specified Double is positive infinity.

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

Parameters

d
The Double to examine.

Return Value

true if the number equals PositiveInfinity; otherwise, false.

Remarks

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

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

See Also

Double Structure | Double Members | System Namespace