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

this() private method

private 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");

					return (int) indices[index];
				}
			}
			#endregion Public Properties

Same methods

CheckedListBox.CheckedIndexCollection::this ( int index ) : objectIList.System