Following up on my question yesterday to deepcopy an object with events in C# and attach the events of the original object to the Cloned copy is pretty easy, you just set the Event declaration in the Copy = the value in the original. Deep Clone when events are attached
How do you do this in VB.Net? (Using .Net 2)
I was hoping maybe there was something with reflection where you can examine what events are bound and somehow transfer those to the new object.