System.Windows.Forms.Control.ControlCollection.IList C# (CSharp) 메소드

IList() 개인적인 메소드

private IList ( object control ) : void
control object
리턴 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