Comment faire pour supprimer plusieurs éléments cochés de CheckedListBox

Je sais comment faire pour supprimer un seul checkedItem de checkedlistbox. Mais maintenant, je veux enlever tous les éléments cochés dans un aller.

J'ai essayé ceci:

foreach (var item in List_Frente.CheckedItems)
            {
                List_Frente.Items.Remove(item);
            }

Mais comme vous le savez probablement, il me donne une erreur,en disant que, List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change. Comment puis-je supprimer tous les checkeditems avec un seul clic ?

InformationsquelleAutor Ghaleon | 2013-01-29