J
John A. Bailo
When I run this line,
Debug.WriteLine("I am in OnHandler2 and MyEventArgs is {0}", e.m_id);
and e.m_id = "Event args for event 1"
What prints in the debug window is:
Event args for event 1: I am in OnHandler1 and MyEventArgs is {0}
Why?
Debug.WriteLine("I am in OnHandler2 and MyEventArgs is {0}", e.m_id);
and e.m_id = "Event args for event 1"
What prints in the debug window is:
Event args for event 1: I am in OnHandler1 and MyEventArgs is {0}
Why?