I have some problems on a site with the concurrent access to a list. This list keeps a cart of items, and multiple deletes are crashing the site. Which is the best m
Yes, you have to lock- using List.SyncRoot like this:
lock (myList.SyncRoot) { // Access the collection. }