コード例 #1
0
 //============================================================
 // <T>获得或设置指定索引位置的对象。</T>
 //
 // @param index 索引位置
 //============================================================
 public object this[int index] {
     get { return(_collection.Get(index)); }
     set { _collection.Set(index, (T)value); }
 }