System.Windows.Forms.FormCollection.Remove C# (CSharp) Method

Remove() public method

public Remove ( Form form ) : void
form Form
return void
        public void Remove(Form form)
        {
            items.Remove(form);
        }

Usage Example

Example #1
0
 internal static void RemoveForm(Form f)
 {
     lock (forms)
         forms.Remove(f);
 }