Im having problems removing dupes from a listbox. It seems to work well on smaller lists but for some reason on other lists it removes more than just dupes.
Code:
if(dupes==false)
{
for (int i = 0; i < listBox1.Items.Count; i++)
{
for (int j = 0; j < listBox1.Items.Count; j++)
{
if (listBox1.Items[i].ToString() == listBox1.Items[j].ToString())
{
listBox1.Items.Remove(listBox1.Items[i].ToString());
statusBar1.Panels[0].Text ="Processing: " + i;
}
}
}