Registering an event from different thread
- by ET
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.