23 references to _data
System.Windows.Forms (23)
System\Windows\Forms\AutoCompleteStringCollection.cs (23)
28
return
_data
[index];
32
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove,
_data
[index]));
33
_data
[index] = value;
42
public int Count =>
_data
.Count;
44
bool IList.IsReadOnly => ((IList)
_data
).IsReadOnly;
46
bool IList.IsFixedSize => ((IList)
_data
).IsFixedSize;
71
int index = ((IList)
_data
).Add(value);
97
_data
.AddRange(nonNullItems);
107
_data
.Clear();
116
public bool Contains(string value) =>
_data
.Contains(value);
122
public void CopyTo(string[] array, int index) =>
_data
.CopyTo(array, index);
128
public int IndexOf(string value) =>
_data
.IndexOf(value);
137
ArgumentOutOfRangeException.ThrowIfGreaterThan(index,
_data
.Count);
141
_data
.Insert(index, value);
149
public bool IsReadOnly => ((IList)
_data
).IsReadOnly;
155
public bool IsSynchronized => ((IList)
_data
).IsSynchronized;
162
_data
.Remove(value);
171
string value =
_data
[index];
172
_data
.RemoveAt(index);
179
public object SyncRoot => ((IList)
_data
).SyncRoot;
197
void ICollection.CopyTo(Array array, int index) => ((ICollection)
_data
).CopyTo(array, index);
199
public IEnumerator GetEnumerator() =>
_data
.GetEnumerator();
201
internal string[] ToArray() => [..
_data
];