Beispiel #1
0
 /// <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);
 }
Beispiel #2
0
 public FractionCopy(FractionCopy i) : this(i.Num, i.Den)
 {
 }