// Operations (type-safe ICloneable) /// <summary> /// Clones the list /// </summary> /// <returns></returns> public ImageIndexCollection Clone() { ImageIndexCollection tc = new ImageIndexCollection(); tc.AddRange(this); tc.Capacity = this.m_array.Length; tc.m_version = this.m_version; return(tc); }
/// <summary> /// Add the content of another TList to this list /// </summary> /// <param name="collection">List to copy items from</param> public void AddRange(ImageIndexCollection collection) { // for (int i=0; i < collection.Count; ++i) Add(collection[i]); ++m_version; Capacity += collection.Count; Array.Copy(collection.m_array, 0, this.m_array, m_count, collection.m_count); m_count += collection.Count; }
/// <summary> /// /// </summary> /// <param name="collection"></param> public ImageIndexCollection(ImageIndexCollection collection) { AddRange(collection); }
// Construction public Enumerator(ImageIndexCollection tc) { m_collection = tc; m_index = -1; m_version = tc.m_version; }