Пример #1
0
 public Object this[Decimal index]
 {
     get { return _array[index.AsInt()]; }
     set { _array[index.AsInt()] = value; }
 }
Пример #2
0
 public Vector(Decimal length, Context context)
 {
     _array = new Object[length.AsInt()];
     Fill(0, _array.Length - 1, context.Intern("fail!"));
 }