I have an IList and a ListBox.
I compare the items in IList and ListBox by a for loop.
if(they are equal)
remove from the IList.
I used Ilistobj.removeAt(loopNumber). // it throws error Collection was of a fixed size.
How to remove from that object.
I need that obj for someother purpose.