¡@

Home 

c# Programming Glossary: source_someevent

How do events cause memory leaks in C# and how do Weak References help mitigate that?

http://stackoverflow.com/questions/3662842/how-do-events-cause-memory-leaks-in-c-sharp-and-how-do-weak-references-help-miti

attach an event listner this adds a reference to the source_SomeEvent method in this instance to the invocation list of SomeEvent.. of SomeEvent in source source.SomeEvent new EventHandler source_SomeEvent void source_SomeEvent object sender EventArgs e whatever ...and.. source.SomeEvent new EventHandler source_SomeEvent void source_SomeEvent object sender EventArgs e whatever ...and then the following..