terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ AddHandlers()

void System.ComponentModel.EventHandlerList.AddHandlers ( EventHandlerList listToAddFrom)
inline

Definition at line 74 of file EventHandlerList.cs.

75 {
77 do
78 {
79 head = listToAddFrom._head;
80 if (head == null)
81 {
82 break;
83 }
84 object key = head._key;
85 Delegate handler = head._handler;
86 this.AddHandler(key, handler);
87 }
88 while (head._next != null);
89 }
class f__AnonymousType0<< Count > j__TPar
void AddHandler(object key, Delegate value)

References System.ComponentModel.EventHandlerList.ListEntry._handler, System.ComponentModel.EventHandlerList.ListEntry._key, System.ComponentModel.EventHandlerList.ListEntry._next, System.ComponentModel.EventHandlerList.AddHandler(), j__TPar, and System.key.