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.