System.Windows.Forms.Menu.MenuItemCollection.this C# (CSharp) 메소드

this() 공개 메소드

public this ( int index ) : MenuItem
index int
리턴 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