<small id='79we8'></small><noframes id='79we8'>

<tfoot id='79we8'></tfoot>
    • <bdo id='79we8'></bdo><ul id='79we8'></ul>

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

        <legend id='79we8'><style id='79we8'><dir id='79we8'><q id='79we8'></q></dir></style></legend>

        带有 ref 变量的函数委托

        时间:2023-11-11
        1. <tfoot id='1m1oj'></tfoot>

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

                  <tbody id='1m1oj'></tbody>
                • 本文介绍了带有 ref 变量的函数委托的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  public object MethodName(ref float y)
                  {
                  //method
                  }
                  

                  如何为这个方法定义一个 Func 委托?

                  How do I defined a Func delegate for this method?

                  推荐答案

                  Func 无法做到,但你可以为它定义一个自定义的delegate:

                  It cannot be done by Func but you can define a custom delegate for it:

                  public delegate object MethodNameDelegate(ref float y);
                  

                  使用示例:

                  public object MethodWithRefFloat(ref float y)
                  {
                      return null;
                  }
                  
                  public void MethodCallThroughDelegate()
                  {
                      MethodNameDelegate myDelegate = MethodWithRefFloat;
                  
                      float y = 0;
                      myDelegate(ref y);
                  }
                  

                  这篇关于带有 ref 变量的函数委托的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:lambda 表达式的意义何在? 下一篇:在 .NET 中,委托的内部实现是什么?

                  相关文章

                • <small id='LBYvt'></small><noframes id='LBYvt'>

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