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