Hello. I have the following code on a control of my own:
MethodInvoker _mi;
public MethodInvoker MI { get { return _mi; } set { _mi = value; } }
I thought the IDE would recognize this delegate, and allow me to choose a suitable already implemented function or create a new one if I wanted, just like it does to events, although at least at first glance, that does not seem to be the case. Is there a way to set a function to a delegate through the IDE?