var lst = new ListView();
for (int i = lst.Items.Count - 1; i >= 0; i--)
{
var itemtoremove = //Put your condition here and get that item
lst.Items.Remove(lst.Items.Find("key"));
}
What do you mean by condition? I dont want to delete a row if it says 'soccer' for example, I want to delete a row if any of the two columns don't contain anything. – Edwin TorresNov 6 '12 at 15:16
Also, I tried the code, and there was this error: Argument 1: cannot convert from 'System.Windows.Forms.ListViewItem[]' to 'System.Windows.Forms.ListViewItem – Edwin TorresNov 6 '12 at 15:17
ok.. I don't have ide with me..but logically u should remove the items in reverse direction. – alliswellNov 6 '12 at 15:55