22 references to InnerList
System.Windows.Forms (22)
winforms\Managed\System\WinForms\ComboBox.cs (22)
4068return InnerList.Count; 4137InnerList.Add(item); 4141index = InnerList.BinarySearch(item, Comparer); 4147Debug.Assert(index>=0 && index <= InnerList.Count, "Wrong index for insert"); 4148InnerList.Insert(index, item); 4159index = InnerList.Count-1; 4168InnerList.Remove(item); 4223if (index < 0 || index >= InnerList.Count) { 4227return InnerList[index]; 4250InnerList.Clear(); 4271InnerList.CopyTo(destination, arrayIndex); 4277InnerList.CopyTo(destination, index); 4285return InnerList.GetEnumerator(); 4297return InnerList.IndexOf(value); 4317if (index < 0 || index > InnerList.Count) { 4328InnerList.Insert(index, item); 4345InnerList.RemoveAt(index); 4359if (index < 0 || index >= InnerList.Count) { 4367InnerList.RemoveAt(index); 4384int index = InnerList.IndexOf(value); 4396if (index < 0 || index >= InnerList.Count) { 4400InnerList[index] = value;