Example #1
0
 public override bool Equals <T>(T other)
 {
     if (other is Complex c)
     {
         return(ComplexMath.Equals(this, c));
     }
     return(false);
 }