public bool Equals(ElectricCharge other)
 => IsPositive == other.IsPositive && Denominator == other.Denominator && Numerator == other.Numerator;
Example #2
0
 public bool Equals(ElectricCharge other)
 => Denominator == other.Denominator && Numerator == other.Numerator;