Registering an event from different thread

Posted by ET on Stack Overflow See other posts from Stack Overflow or by ET
Published on 2010-04-01T22:30:47Z Indexed on 2010/04/01 22:33 UTC
Read the original article Hit count: 187

Filed under:
|

Hi, I have a question regarding events in c#. Lets say I have an object obj1 of a class that exposes an event, and this object is running on thread t1. Now on different thread t2, there is another object called obj2 that is registered for the event of obj1.

Is it promised that obj2 will get the event when it will be raised? thanks.

© Stack Overflow or respective owner

Related posts about events

Related posts about multithreading