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