System.Windows.Forms.ListBox.SelectedIndexCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : int
index int
return int
			public int this [int index] {
				get {
					if (index < 0 || index >= Count)
						throw new ArgumentOutOfRangeException ("Index of out range");

					CheckSorted ();
					return (int)selection [index];
				}
			}

Same methods

ListBox.SelectedIndexCollection::this ( int index ) : objectIList.System