3 instantiations of CheckedIndexCollection
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListView\ListView.cs (1)
586_checkedIndexCollection ??= new CheckedIndexCollection(this);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ListView.CheckedIndexCollectionTests.cs (2)
16_collection = new ListView.CheckedIndexCollection(_listView); 24Assert.Throws<ArgumentNullException>("owner", () => new ListView.CheckedIndexCollection(null!));
5 references to CheckedIndexCollection
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListView\ListView.cs (2)
151private CheckedIndexCollection? _checkedIndexCollection; 582public CheckedIndexCollection CheckedIndices
System.Windows.Forms.Tests (3)
System\Windows\Forms\ListView.CheckedIndexCollectionTests.cs (3)
11private readonly ListView.CheckedIndexCollection _collection; 200ListView.CheckedIndexCollection syncRoot = (ListView.CheckedIndexCollection)((ICollection)_collection).SyncRoot;