D
Dom
Let's say I do this:
MyObject o = new MyObject (this, DoWork);
.... where DoThis is a function in the calling class. How do I pick
this up in the constructor, MyObject?
public MyObject (Form OriginatingForm, <???> ptrDoWork)
OriginatingForm.Invoke (ptrDoWork)
How do I replace <???>.
Dom
MyObject o = new MyObject (this, DoWork);
.... where DoThis is a function in the calling class. How do I pick
this up in the constructor, MyObject?
public MyObject (Form OriginatingForm, <???> ptrDoWork)
OriginatingForm.Invoke (ptrDoWork)
How do I replace <???>.
Dom