Ejemplo n.º 1
0
 public GenericInt Divide(GenericInt a, GenericInt b)
 {
     return(new GenericInt(a.m_Int / b.m_Int));
 }
Ejemplo n.º 2
0
 public GenericInt Add(GenericInt a, GenericInt b)
 {
     return(new GenericInt(a.m_Int + b.m_Int));
 }