Axiom.Samples.SelectMenu.RemoveItem C# (CSharp) Метод

RemoveItem() публичный Метод

public RemoveItem ( int index ) : void
index int
Результат void
		public void RemoveItem( int index )
		{
			try
			{
				items.RemoveAt( index );
			}
			catch ( ArgumentOutOfRangeException ex )
			{
				String desc = "Menu \"" + Name + "\" contains no item at position " +
							  index + ".";
				throw new AxiomException( desc + ", SelectMenu.RemoveItem" );
			}
		}

Same methods

SelectMenu::RemoveItem ( String item ) : void