3 writes to
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListBoxes\ListBox.IntegerCollection.cs (1)
312this[index] = (int)value;
System.Windows.Forms.Tests (2)
System\Windows\Forms\ListBox.IntegerCollectionTests.cs (2)
228Assert.Throws<ArgumentOutOfRangeException>("index", () => collection[index] = 2); 242Assert.Throws<ArgumentOutOfRangeException>("index", () => collection[index] = 2);
5 references to
System.Windows.Forms (3)
System\Windows\Forms\Controls\ListBoxes\ListBox.IntegerCollection.cs (2)
302return this[index]; 324destination.SetValue(this[i], i + index);
System\Windows\Forms\Controls\ListBoxes\ListBox.IntegerCollection.CustomTabOffsetsEnumerator.cs (1)
67return _items[_current];
System.Windows.Forms.Tests (2)
System\Windows\Forms\ListBox.IntegerCollectionTests.cs (2)
67Assert.Throws<ArgumentOutOfRangeException>("index", () => collection[index]); 81Assert.Throws<ArgumentOutOfRangeException>("index", () => collection[index]);