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