2 implementations of Count
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListView\ListView.ListViewNativeItemCollection.cs (1)
22public int Count
System\Windows\Forms\Controls\ListView\ListViewGroupItemCollection.cs (1)
18public int Count => Items.Count;
5 references to Count
System.Windows.Forms (5)
System\Windows\Forms\Controls\ListView\ListView.ListViewItemCollection.cs (4)
45public int Count => InnerList.Count; 63ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, InnerList.Count); 70ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, InnerList.Count); 79ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, InnerList.Count);
System\Windows\Forms\Controls\ListView\ListView.ListViewItemCollection.IInnerList.cs (1)
32ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, Count);