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