System.Windows.Forms.Menu.MenuItemCollection.this C# (CSharp) Method

this() public method

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

					return (MenuItem) items[index];
				}
			}

Same methods

Menu.MenuItemCollection::this ( string key ) : MenuItem
Menu.MenuItemCollection::this ( int index ) : objectIList.System.Collections