I want to know if a control has a method assigned on the Click event.
Button b = new Button();
b.Click += (sender, e) => { };
/* What I want */
b.Click.Count // 1
I need something that can at least tell me if the control has or not some method on the click event.
You might do some reading into this topic Determine list of event handlers bound to event , it appears that it may be somewhat related to what you are trying to do.