예제 #1
0
 public static T Divide <T>(T value1, T value2)
 {
     return(MathGeneric <T> .Divide(value1, value2));
 }
예제 #2
0
 public static T1 AltDivide <T1, T2>(T1 value1, T2 value2)
 {
     return(MathGeneric <T2, T1> .Divide(value1, value2));
 }
예제 #3
0
 public static T DivideInt32 <T>(T value, Int32 divisor)
 {
     return(MathGeneric <Int32, T> .Divide(value, divisor));
 }