public static Drob operator /(Drob d1, Drob d2) { Drob res = new Drob(); res.n = (d1.n * d2._m); res.M = (d1._m * d2.n); return(res); }
public bool CompareByOrder(Drob b) { bool flag = false; if (this.n == b.n) { if (this._m == b._m) { flag = true; } } return(flag); }