使用 Lambda 表达式调用通用方法(以及仅在运行时已知的类型)
您可以使用Lambda 表达式对象来表示lambda 作为表达式。
如何创建表示通用方法调用,如果您只知道运行时用于通用方法签名的类型?
例如:
我想创建一个 Lambda 表达式对象 调用: public static TSource Last
但我只知道 TSource
在运行时是什么。
You can use Lambda Expression Objects to represent a lambda as an expression.
How do you create a Lambda Expression Object representing a generic method call, if you only know the type -that you use for the generic method signature- at runtime?
For example:
I want to create a Lambda Expression Objects to call:public static TSource Last<TSource>( this IEnumerable<TSource> source )
But I only know what TSource
is at runtime.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者
or
我不完全理解这个问题,但是 dtb 编写的代码可以简单地写为:
dtb 示例中的代码与 C# 编译器从这个 lambda 表达式自动为您生成的代码几乎相同(编译为表达式树,因为返回类型是
Expression
)。如果您知道运行时的类型,那么您可以使用 dtb 的解决方案,也可以使用 Reflection 调用 CreateLambda 方法(上面),这可能会更慢,但允许您在中编写代码自然 C# 中的 lambda:
这种方法的好处是 CreateLambda 中的代码可能要复杂得多,显式使用表达式树确实很难做到这一点。
I don't fully understand the question, but the code that dtb wrote could be written simply as:
The code in the sample by dtb is pretty much the same thing as what the C# compiler automatically generates for you from this lambda expression (compiled as expression tree, because the return type is
Expression
).If you know the type at runtime, then you can either use the solution by dtb or you can invoke the
CreateLambda
method (above) using Reflection, which may be slower, but allows you to write the code in the lambda in the natural C#:The nice thing about this approach is that the code in
CreateLambda
can be much more complicated, which would be really hard to do using expression trees explicitly.