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

this() public method

public this ( int index ) : int
index int
return int
			public int this [int index] {
				get {
					int [] indices = GetIndices ();
					if (index < 0 || index >= indices.Length)
						throw new ArgumentOutOfRangeException ("index");
					return indices [index];
				}
			}

Same methods

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