Ejemplo n.º 1
0
 public Variable(string name, IVariableStore store, int exponent)
 {
     ID       = store.GetOrCreateID(name);
     Exponent = exponent;
 }
Ejemplo n.º 2
0
 public Variable(string name, IVariableStore store)
 {
     ID       = store.GetOrCreateID(name);
     Exponent = 1;
 }