public bool Equals(Complex other) { return(Re.Equals(other.Re) && Im.Equals(other.Im)); }
protected bool Equals(Complex other) { return(Re.Equals(other.Re) && Im.Equals(other.Im)); }
/// <summary> Визначає чи рівні два числа. </summary> /// <param name="other"> Число, яке порівнюється з даним. </param> /// <returns> true - рівні, false - не рівні. </returns> public bool Equals(double other) { return(Re.Equals(other) && Im.Equals(0d)); }