Esempio n. 1
0
 public static UInt32 Subtract(this UInt32 d, Percentage p)
 {
     return(d - d.Multiply(p));
 }
Esempio n. 2
0
 public static UInt32 Add(this UInt32 d, Percentage p)
 {
     return(d + d.Multiply(p));
 }