16 references to data
System.Windows.Forms (16)
winforms\Managed\System\WinForms\AutoCompleteStringCollection.cs (16)
35return ((string)data[index]); 38OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove, data[index])); 39data[index] = value; 51return data.Count; 109int index = data.Add(value); 122data.AddRange(value); 132data.Clear(); 143return data.Contains(value); 152data.CopyTo(array, index); 161return data.IndexOf(value); 170data.Insert(index, value); 202data.Remove(value); 211string value = (string)data[index]; 212data.RemoveAt(index); 266data.CopyTo(array, index); 271return data.GetEnumerator();