2 instantiations of ListEntry
System (2)
compmod\system\componentmodel\EventHandlerList.cs (2)
63head = new ListEntry(key, value, head); 78head = new ListEntry(key, value, head);
10 references to ListEntry
System (10)
compmod\system\componentmodel\EventHandlerList.cs (10)
18ListEntry head; 45ListEntry e = null; 58ListEntry e = Find(key); 73ListEntry e = Find(key); 85ListEntry currentListEntry = listToAddFrom.head; 99private ListEntry Find(object key) { 100ListEntry found = head; 115ListEntry e = Find(key); 124internal ListEntry next; 128public ListEntry(object key, Delegate handler, ListEntry next) {