//============================================================ // <T>查找指定对象的索引位置。</T> // // @param value 对象 // @return 索引位置 //============================================================ public int IndexOf(object value) { return(_collection.IndexOf((T)value)); }