I have a problem. I have two observable collections with the same objects as content.
I grep one object from my datagrid with observablecollection.
datagrid.selecteditem as object
and want to delete it from the second observable collection. The line statement looks like
obscollection.remove(datagrid.selecteditem as object);
The objects are completly the same, but when I count obscollection the object isn't removed...
How can I solve this? Please no questions on why I need 2 collections with the same content ;)