<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 变量的函数委托

        Func delegate with ref variable(带有 ref 变量的函数委托)
        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 变量的函数委托的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
                  Parameter count mismatch with Invoke?(参数计数与调用不匹配?)
                  How to store delegates in a List(如何将代表存储在列表中)
                  How delegates work (in the background)?(代表如何工作(在后台)?)
                  C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)
                  Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)
                  • <small id='LBYvt'></small><noframes id='LBYvt'>

                        <tfoot id='LBYvt'></tfoot>
                      • <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>
                            <tbody id='LBYvt'></tbody>

                            <bdo id='LBYvt'></bdo><ul id='LBYvt'></ul>