Answers for "how to remove all items in a listbox x#"

C#
0

listbox1.remove item c#

listBox1.Cast<ListItem>().Where(p=>p.Text.Contains("OBJECT")).ToList().ForEach(listBox1.Items.Remove);
Posted by: Guest on September-07-2021

Code answers related to "how to remove all items in a listbox x#"

C# Answers by Framework

Browse Popular Code Answers by Language