Complex.IsInfinity(Complex) Method
Definition
Returns a value indicating whether the specified complex number evaluates to infinity.
public:
static bool IsInfinity(System::Numerics::Complex value);
public static bool IsInfinity (System.Numerics.Complex value);
static member IsInfinity : System.Numerics.Complex -> bool
Public Shared Function IsInfinity (value As Complex) As Boolean
Parameters
- value
- Complex
A complex number.
Returns
true
if either, the real or imaginary part are PositiveInfinity or NegativeInfinity; otherwise, false
.