you can do something like this:
foreach (var item in List_Frente.CheckedItems.OfType<string>().ToList())
{
List_Frente.Items.Remove(item);
}
If you want to write everything in one line:
List_Frente.CheckedItems.OfType<string>().ToList().ForEach(List_Frente.Items.Remove);
This only works if your items are of the same type. It still looks rude.
Edit-:
ToList() , , CheckedItems, , . OfType<string>() , - ToList() on.