• <tfoot id='PTBrp'></tfoot>
    <legend id='PTBrp'><style id='PTBrp'><dir id='PTBrp'><q id='PTBrp'></q></dir></style></legend>

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

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

      • <bdo id='PTBrp'></bdo><ul id='PTBrp'></ul>
      1. 传递带有额外参数的委托函数

        Passing delegate function with extra parameters(传递带有额外参数的委托函数)

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

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

                    <tbody id='maSop'></tbody>
                  <legend id='maSop'><style id='maSop'><dir id='maSop'><q id='maSop'></q></dir></style></legend>
                • <tfoot id='maSop'></tfoot>
                • 本文介绍了传递带有额外参数的委托函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个如下所示的委托:

                  I have a delegate which looks like the following:

                  public delegate bool ApprovalPrompt(ApprovalType type, int receipt, params string[] info);
                  

                  我接受这种类型的委托作为我要调用的函数的参数.但是,在一个特定的调用函数中,我想将一些额外的数据传递给与此委托匹配的函数.

                  I accept a delegate of this type as a parameter to the function I want to call. However, in one particular calling function, I want to pass some extra data to the function which matches this delegate.

                  这是实现函数的签名:

                  private static bool LogApprovalNeeded(FraudFilterUtilities.ApprovalType type, int receipt, params string[] info)
                  

                  它的调用方式如下:

                  PrepareReceipt(LogApprovalNeeded);
                  

                  我希望它是:

                  private static bool LogApprovalNeeded(Customer cust, FraudFilterUtilities.ApprovalType type, int receipt, params string[] info)
                  

                  理想情况下使用如下:

                  PrepareReceipt(LogApprovalNeeded(myCustomer))
                  

                  <小时>

                  我怎样才能完成这样的事情?我宁愿不需要在类中声明一个字段只是为了在一个函数和回调之间保存 Customer 参数...

                  推荐答案

                  你可以使用 lambda 来curry"你的函数:

                  You can use a lambda to "curry" your function:

                  PrepareReceipt((type, receipt, info) => 
                      LogApprovalNeeded(myCustomer, type, receipt, info))
                  

                  Currying 函数是存储对函数的引用但具有一个或多个固定"参数的正式术语,从而改变方法的签名.

                  Currying a function is the formal term for storing a reference to a function but with one or more of the parameters "fixed", thus altering the signature of the method.

                  当您的函数签名不需要委托提供的所有参数时,您也可以使用 lambda;您可以通过不传递 lambda 中的所有参数来有效地丢弃参数.

                  You can also use a lambda when the signature of your function doesn't need all of the arguments that the delegate is providing; you can effectively discard parameters by not passing forward all of the arguments in the lambda.

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

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

                  相关文档推荐

                  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='SCmfW'></small><noframes id='SCmfW'>

                      <legend id='SCmfW'><style id='SCmfW'><dir id='SCmfW'><q id='SCmfW'></q></dir></style></legend><tfoot id='SCmfW'></tfoot>

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