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

this() public method

public this ( int index ) : int
index int
return int
			public int this [int index] {
				get {
					if (!owner.is_selection_available || index < 0 || index >= List.Count)
						throw new ArgumentOutOfRangeException ("index");

					return (int) List [index];
				}
			}

Same methods

ListView.SelectedIndexCollection::this ( int index ) : objectIList.System.Collections