March 2003
Intermediate to advanced
896 pages
32h 35m
English
MethodInvoker
This (extremely useful!) delegate encapsulates a
void method with no parameters. This is one of the
most common utility delegates, and it saves you from repeatedly
having to define your own. As an example, you might use it in
conjunction with Control.Invoke() to marshal an
inter-thread call back onto the UI thread. I only wish
I’d found it sooner . . . .
public delegate void MethodInvoker();
Read now
Unlock full access