Overload List

  Name Description
IsEqual(Object)
Compares this object against the specified object. The result is true if and only if the argument is not null and is a Complex object that represents the same complex number. Equality follows the same pattern as Double applies to each field:
  • If d1 and d2 both represent Double.NaN, then the IsEqual method returns true, even though Double.NaN==Double.NaN has the value false.
  • If d1 represents +0.0 while d2 represents -0.0, or vice versa, the equal test has the value false, even though +0.0==-0.0 has the value true.
This definition allows hash tables to operate properly.
IsEqual(Complex, Double)
Compares this object with the Complex number given as parameter b. The tolerance parameter is the radius within which the b number must lie for the two complex numbers to be considered equal.

See Also