I upgraded ReSharper and seeing an error that I was not present previously. I checked around, but found nothing about the error or the underlying issue it is flagging.
** Edit **: as pointed out below, it is actually the 'Heap Allocation Viewer' plugin, not ReSharper itself that is marking it as an error -- though that doesn't change the question itself.
Slow delegate creation: from interface 'IPluginHandler' method
this occurs during the subscription of a plugin handler to events on an event aggregator.
public void Subscribe(IPluginHandler subscriber)
{
Executing += subscriber.OnExecuting;
// -- additional subscriptions --
}
in the above code, Executing
is an event and subscriber.OnExecuting
is an appropriate event handler for the event.
To be clear, this is a ReSharper 'soft error' as the code will still build and run as expected.
So my question is what is the underlying issue the good people at JetBrains are flagging for me and what are the ramifications of it.
Thanks