B
bpfa
hi
there is a way to obtain the handler's list for a specific event of an
object?
thanks
there is a way to obtain the handler's list for a specific event of an
object?
thanks
bpfa said:hi
there is a way to obtain the handler's list for a specific event of an
object?
thanks
FrzzMan said:I think only one handler can assign to one control's event? BTW, I don't
know much about C# yet, can you assign more than one handler to one
control's event?
bpfa said:there is a way to obtain the handler's list for a specific event of an
object?
Jon Skeet said:Not from outside the class. From inside the class, assuming you've
implemented the event with a delegate (which you do by default with the
event keyword) you can use Delegate.GetInvocationList.