13 references to List
System.Windows.Forms (13)
System\Windows\Forms\Controls\ListView\ListViewGroupCollection.cs (13)
24public int Count => List.Count; 38get => List[index]; 43if (List.Contains(value)) 50List[index] = value; 124int index = ((IList)List).Add(group); 127_listView.InsertGroupInListView(List.Count, group); 202List.Clear(); 209public bool Contains(ListViewGroup value) => List.Contains(value); 221public void CopyTo(Array array, int index) => ((ICollection)List).CopyTo(array, index); 223public IEnumerator GetEnumerator() => List.GetEnumerator(); 225public int IndexOf(ListViewGroup value) => List.IndexOf(value); 249List.Insert(index, group); 280if (!List.Remove(group))