vote up 0 vote down star

I am currently getting exceptions when modifying an IBindingList on multiple threads. Does anyone have a threadsafe version before I write my own?

flag

2 Answers

vote up 0 vote down

Only just found this post... do you mean like this?

link|flag
vote up 2 vote down

I think you'll find this an incredibly difficult task. The easier path would be to prevent multiple-thread access with a lock:

void AddItemToList(object o)
{
    lock(myBindingList)
    {
        myBindingList.Add(o);
    }
}

Look at the lock statement docs for more info.

link|flag
Shouldn't that be lock (_mySyncObject)? – ilitirit Sep 29 '08 at 13:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.