Пример #1
0
 public Variable(string name, IVariableStore store, int exponent)
 {
     ID       = store.GetOrCreateID(name);
     Exponent = exponent;
 }
Пример #2
0
 public Variable(string name, IVariableStore store)
 {
     ID       = store.GetOrCreateID(name);
     Exponent = 1;
 }