예제 #1
0
 public GenericInt Divide(GenericInt a, GenericInt b)
 {
     return(new GenericInt(a.m_Int / b.m_Int));
 }
예제 #2
0
 public GenericInt Add(GenericInt a, GenericInt b)
 {
     return(new GenericInt(a.m_Int + b.m_Int));
 }