System.Windows.Forms.Control.ControlCollection.IList C# (CSharp) Method

IList() private method

private IList ( object control ) : void
control object
return void
			void IList.Remove (object control)
			{
				if (!(control is Control))
					throw new ArgumentException ("Object of type Control required", "control");
				
				this.Remove ((Control)control);
			}

Same methods

Control.ControlCollection::IList ( object control ) : int