Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个事件处理程序的字典,或者类似于带有键的方法字典
并在接受键的方法中使用它,当调用此函数时,我使用键搜索并触发事件或方法
任何的想法
您可以创建一个字典EventHandler:
EventHandler
Dictionary<string, EventHandler> eventHandlers // using a string or whatever you like for a key
并像这样调用:
eventHandlers[key].Invoke();
它记录在 MSDN:How to: Use a Dictionary to Store Event Instances (C# Programming Guide)上。