System.Windows.Forms.ToolStripItemCollection.InsertNoOwnerOrLayout C# (CSharp) Méthode

InsertNoOwnerOrLayout() private méthode

private InsertNoOwnerOrLayout ( int index, ToolStripItem value ) : void
index int
value ToolStripItem
Résultat void
		internal void InsertNoOwnerOrLayout (int index, ToolStripItem value)
		{
			if (value == null)
				throw new ArgumentNullException ("value");

			if (index > Count)
				base.Add (value);
			else
				base.Insert (index, value);
		}