Example #1
0
 public static Decimal Remainder(Decimal d1, Decimal d2)
 {
     return(DecCalc.VarDecMod(ref d1, ref d2));
 }
Example #2
0
 public static decimal Remainder(decimal d1, decimal d2)
 {
     DecCalc.VarDecMod(ref d1, ref d2);
     return(d1);
 }