System.Windows.Forms.Menu.MenuItemCollection.this C# (CSharp) Méthode

this() public méthode

public this ( int index ) : MenuItem
index int
Résultat 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