I have defined new member in my class
protected COMObject.Call call_ = null;
This class has the following event handler that I subscribed t
yes, you should use overloaded -= to unsubscribe an event.
-=
simply assigning a reference to null will not do that automatically. The object will still be listening to that event.
null