R
Rick Lones
When I declare a delegate signature thusly . . .
private delegate void eventHandler(EventWaitHandle ewh);
. . . can someone explain why the "ewh" identifier is required? It appears
completely superfluous to me - the parameter type(s) and position(s) seem like
all that should be needed. This is .Net 2.0 BTW, dunno what changes in later
incarnations.
-rick-
private delegate void eventHandler(EventWaitHandle ewh);
. . . can someone explain why the "ewh" identifier is required? It appears
completely superfluous to me - the parameter type(s) and position(s) seem like
all that should be needed. This is .Net 2.0 BTW, dunno what changes in later
incarnations.
-rick-