Hi,
I recieve an error "stackoverflow in unknown module" while trying to add items to a listView.
foreach(String str in list)
{
if(listView1.FindItemWithText(str) == null)
{
listView1.Items.Add(str); <-- The exception occurs here
}
}
Can someone suggest what I am missing here?
Thanks!