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