gpt4 book ai didi

c# - 使用 Lambda 表达式调用通用方法(以及仅在运行时已知的类型)

转载 作者:可可西里 更新时间:2023-11-01 08:03:38 26 4
gpt4 key购买 nike

您可以使用 Lambda Expression Objects将 lambda 表示为表达式。

如何创建 Lambda Expression Object表示泛型方法调用,如果您只知道在运行时用于泛型方法签名的类型?

例如:

我想创建一个 Lambda Expression Objects打电话: public static TSource Last<TSource>( this IEnumerable<TSource> source )

但我只知道什么TSource在运行时。

最佳答案

static Expression<Func<IEnumerable<T>, T>> CreateLambda<T>()
{
var source = Expression.Parameter(
typeof(IEnumerable<T>), "source");

var call = Expression.Call(
typeof(Enumerable), "Last", new Type[] { typeof(T) }, source);

return Expression.Lambda<Func<IEnumerable<T>, T>>(call, source)
}

static LambdaExpression CreateLambda(Type type)
{
var source = Expression.Parameter(
typeof(IEnumerable<>).MakeGenericType(type), "source");

var call = Expression.Call(
typeof(Enumerable), "Last", new Type[] { type }, source);

return Expression.Lambda(call, source)
}

关于c# - 使用 Lambda 表达式调用通用方法(以及仅在运行时已知的类型),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2850265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com