//============================================================ // <T>在指定的索引位置插入对象。</T> // // @param index 索引位置 // @param value 对象 //============================================================ public void Insert(int index, object value) { _collection.Insert(index, (T)value); }