System.Windows.Forms.Control.ControlCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : Control
index int
return Control
			public virtual new Control this[int index] {
				get {
					if (index < 0 || index >= list.Count)
					{
						throw new ArgumentOutOfRangeException ("index", index, "ControlCollection does not have that many controls");
					}
					return (Control)list[index];
				}
			}

Same methods

Control.ControlCollection::this ( string key ) : Control