Exemple #1
0
        // ComboBox.ObjectCollection
        static public void RemoveAll(this ComboBox.ObjectCollection thisItems)
        {
            int itemsLenght = thisItems.Count;

            for (int l = 0; l < itemsLenght; l++)
            {
                thisItems.Remove(thisItems[0]);
            }
        }