Exemple #1
0
 public static Percentage operator /(Money x, Money y)
 {
     CheckCurrencies(x, y);
     return(Percentage.Of((int)Math.Round(x.Value / y.Value, 0)));
 }