2 instantiations of ListEntry
System.ComponentModel.Primitives (2)
System\ComponentModel\EventHandlerList.cs (2)
54_head = new ListEntry(key, value, _head); 68_head = new ListEntry(key, value, _head);
10 references to ListEntry
System.ComponentModel.Primitives (10)
System\ComponentModel\EventHandlerList.cs (10)
11private ListEntry? _head; 37ListEntry? e = null; 47ListEntry? e = Find(key); 61ListEntry? e = Find(key); 76ListEntry? currentListEntry = listToAddFrom._head; 86private ListEntry? Find(object key) 88ListEntry? found = _head; 102ListEntry? e = Find(key); 111internal readonly ListEntry? _next; 115public ListEntry(object key, Delegate? handler, ListEntry? next)