I updated ReSharper and saw an error that I had not previously attended. I checked, but did not find anything about the error or the main problem that it puts.
** Edit **: as indicated below, this is actually the Kitchen Browser plugin, not ReSharper itself, which marks it as an error - although this does not change the question itself.
Slow delegate creation: from the IPluginHandler Method interface
this happens when the plugin handler subscribes to events in the event aggregator.
public void Subscribe(IPluginHandler subscriber) { Executing += subscriber.OnExecuting;
in the above code, Executing is the event, and subscriber.OnExecuting is the corresponding event handler for the event.
To be clear, this is a “soft mistake” by ReSharper, because the code will still build and run as expected.
So my question is what is the main problem that good people at JetBrains have noted for me and what are its implications.
thanks
c # delegates resharper
David culp
source share