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 有超过 2 个参数时,我会看到 C# 代码。
这是一个好习惯吗?
实现自定义事件参数 CustomEvtArgs 时可能的示例有哪些: EvtArgs 类不足以处理事件的数据?
没有什么能阻止您创建更多参数。EventArgs 派生类通常更易于维护,因为当您添加新参数时(例如:向 SearchEventArgs 类型类添加新字段),您不必重写所有现有方法调用,只需使用新参数即可在新方法中。