29 references to InnerList
System.Drawing (29)
misc\ClientUtils.cs (29)
312WeakRefObject weakRef = InnerList[index] as WeakRefObject; 321InnerList[index] = CreateWeakRefObject(value); 332InnerList.RemoveAt(currentIndex); 352if( this.InnerList[i] != other.InnerList[i] ) { 353if( this.InnerList[i] == null || !this.InnerList[i].Equals(other.InnerList[i])) { 381destinationList.InnerList[--destinationIndex] = sourceList.InnerList[--sourceIndex]; 386destinationList.InnerList[destinationIndex++] = sourceList.InnerList[sourceIndex++]; 405for( int idx = 0; idx < this.InnerList.Count; idx++ ) { 406if(this.InnerList[idx] != null && this.InnerList[idx].GetHashCode() == hash ) { 414public void Clear() { InnerList.Clear(); } 415public bool IsFixedSize { get { return InnerList.IsFixedSize; } } 416public bool Contains(object value) { return InnerList.Contains(CreateWeakRefObject(value)); } 417public void RemoveAt(int index) { InnerList.RemoveAt(index); } 418public void Remove(object value) { InnerList.Remove(CreateWeakRefObject(value)); } 419public int IndexOf(object value) { return InnerList.IndexOf(CreateWeakRefObject(value)); } 420public void Insert(int index, object value) { InnerList.Insert(index, CreateWeakRefObject(value)); } 425return InnerList.Add(CreateWeakRefObject(value)); 431public int Count { get { return InnerList.Count; } } 432object ICollection.SyncRoot { get { return InnerList.SyncRoot; } } 433public bool IsReadOnly { get { return InnerList.IsReadOnly; } } 434public void CopyTo(Array array, int index) { InnerList.CopyTo(array, index); } 435bool ICollection.IsSynchronized { get { return InnerList.IsSynchronized; } } 440return InnerList.GetEnumerator();