Initially, I had assumed yes, because I understood that the invocation list for a multi-cast delegate is implemented as a linked list, which supports constant time insertion and deletion. However, since multicast delegates are immutable, it seems that any add/remove operation would actually require the invocation list to be copied. Is this correct, or am I missing something?
Cost of registering / unregistering is of interest because I have a long-running application that frequently registers handlers for various short-lived objects to an event, and then un-registers them just before they are disposed. The invocation list can get fairly long, so I really want this to be a constant time operation.