<i id='2WxdY'><tr id='2WxdY'><dt id='2WxdY'><q id='2WxdY'><span id='2WxdY'><b id='2WxdY'><form id='2WxdY'><ins id='2WxdY'></ins><ul id='2WxdY'></ul><sub id='2WxdY'></sub></form><legend id='2WxdY'></legend><bdo id='2WxdY'><pre id='2WxdY'><center id='2WxdY'></center></pre></bdo></b><th id='2WxdY'></th></span></q></dt></tr></i><div id='2WxdY'><tfoot id='2WxdY'></tfoot><dl id='2WxdY'><fieldset id='2WxdY'></fieldset></dl></div>
  • <legend id='2WxdY'><style id='2WxdY'><dir id='2WxdY'><q id='2WxdY'></q></dir></style></legend>

    <small id='2WxdY'></small><noframes id='2WxdY'>

      • <bdo id='2WxdY'></bdo><ul id='2WxdY'></ul>
        <tfoot id='2WxdY'></tfoot>

        动作&lt;对象,EventArgs&gt;无法转换为 EventHandler?

        时间:2023-09-15

        <small id='O1Eqd'></small><noframes id='O1Eqd'>

          • <bdo id='O1Eqd'></bdo><ul id='O1Eqd'></ul>
                <tbody id='O1Eqd'></tbody>
              <i id='O1Eqd'><tr id='O1Eqd'><dt id='O1Eqd'><q id='O1Eqd'><span id='O1Eqd'><b id='O1Eqd'><form id='O1Eqd'><ins id='O1Eqd'></ins><ul id='O1Eqd'></ul><sub id='O1Eqd'></sub></form><legend id='O1Eqd'></legend><bdo id='O1Eqd'><pre id='O1Eqd'><center id='O1Eqd'></center></pre></bdo></b><th id='O1Eqd'></th></span></q></dt></tr></i><div id='O1Eqd'><tfoot id='O1Eqd'></tfoot><dl id='O1Eqd'><fieldset id='O1Eqd'></fieldset></dl></div>

            • <tfoot id='O1Eqd'></tfoot>

              <legend id='O1Eqd'><style id='O1Eqd'><dir id='O1Eqd'><q id='O1Eqd'></q></dir></style></legend>

                  本文介绍了动作&lt;对象,EventArgs&gt;无法转换为 EventHandler?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在连接一个事件以使用一个 lambda,它需要在触发后自行删除.我无法通过将 lambda 内联到 += 事件(没有可用于删除事件的可访问变量)来做到这一点,所以我设置了一个 Action<object, EventArgs> 变量并将 lambda 移到那里.主要错误是它无法将 Action 转换为 EventHandler.我认为 lambda 表达式可以隐式转换为事件处理程序,为什么这不起作用?

                  I was wiring up an event to use a lambda which needed to remove itself after triggering. I couldn't do it by inlining the lambda to the += event (no accessable variable to use to remove the event) so i set up an Action<object, EventArgs> variable and moved the lambda there. The main error was that it could not convert an Action<object, EventArgs> to an EventHandler. I thought lambda expressions were implicitly convertable to event handlers, why doesn't this work?

                  推荐答案

                  Lambda 可以隐式转换为具有正确形状的委托类型,但是两个形状相同的委托类型不能隐式转换为彼此.只需将局部变量设为 EventHandler 类型即可.

                  Lambdas are implicitly convertible to delegate types with the right shape, but two same-shaped delegate types are not implicitly convertible to one another. Just make the local variable have type EventHandler instead.

                  EventHandler h = (o, ea) => { ... };
                  e += h;
                  ...
                  e -= h;
                  

                  (如果有帮助的话:

                  Action<object, EventArgs> a = (o, ea) => { }; 
                  EventHandler e = a;  // not allowed
                  EventHandler e2 = (o,ea) => a(o,ea);  // ok
                  

                  )

                  这篇关于动作&lt;对象,EventArgs&gt;无法转换为 EventHandler?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Winforms 用户控件自定义事件 下一篇:为什么不使用自定义类而不是继承 EventArgs 类

                  相关文章

                  <small id='67Tgj'></small><noframes id='67Tgj'>

                    1. <legend id='67Tgj'><style id='67Tgj'><dir id='67Tgj'><q id='67Tgj'></q></dir></style></legend>
                      <i id='67Tgj'><tr id='67Tgj'><dt id='67Tgj'><q id='67Tgj'><span id='67Tgj'><b id='67Tgj'><form id='67Tgj'><ins id='67Tgj'></ins><ul id='67Tgj'></ul><sub id='67Tgj'></sub></form><legend id='67Tgj'></legend><bdo id='67Tgj'><pre id='67Tgj'><center id='67Tgj'></center></pre></bdo></b><th id='67Tgj'></th></span></q></dt></tr></i><div id='67Tgj'><tfoot id='67Tgj'></tfoot><dl id='67Tgj'><fieldset id='67Tgj'></fieldset></dl></div>
                        <bdo id='67Tgj'></bdo><ul id='67Tgj'></ul>
                      <tfoot id='67Tgj'></tfoot>