/// <summary> /// Check if the numerator and denominators match, without trying to factor /// </summary> /// <param name="other"></param> /// <returns></returns> public bool EqualsExactly(FractionCopy other) { return(Num == other.Num && Den == other.Den); }
public FractionCopy(FractionCopy i) : this(i.Num, i.Den) { }