예제 #1
0
 public IVariable this[int index]
 {
     get
     {
         Contract.Requires <ArgumentOutOfRangeException>(VariableCount > index);
         return(variables.ElementAt(index).Value);
     }
 }