Exemplo n.º 1
0
 public double getValueAt(Key key)
 {
     int i = 0;
     while(i < calcDescription.Count && calcDescription.ElementAt(i).startYear > key.year)
     { i++; }
     return calcDescription.ElementAt(i).getValueAt(key);
 }
Exemplo n.º 2
0
 public double getValueAt(Key key)
 {
     return this.combinator.combineInputs(this.input, key);
 }