执行给定方法的 C# 方法

发布于 2024-10-13 12:09:05 字数 368 浏览 8 评论 0原文

我正在尝试编写以下内容:我想编写一个方法“A”,它采用另一个方法“B”作为参数,以及该方法 B 的未知数量的参数。(params object[] args)。现在,在方法 A 中,我想使用参数 args 调用 B。 B 现在将返回一个我希望 A 也返回的对象。

这一切听起来有点奇怪,因此我将添加一些示例代码:

public object A(Func<object> B, params object[] args)
{
    object x = B.Method.Invoke(args);

    return x;
}

问题是,Func 不能像那样工作。有谁知道这样做的方法吗?

问候, 基督教

I am trying to write the following: I would like to write a method "A" which takes as parameter another method "B" as well as an unknown number of parameters for this method B. (params object[] args). Now, inside method A i would like to make a call to B with the parameters args. B will now return an object which I would like A to return as well.

This all sounds a bit strange, therefore I will add some example code:

public object A(Func<object> B, params object[] args)
{
    object x = B.Method.Invoke(args);

    return x;
}

The problem is, that Func does not work like that. Does anyone know a way of doing this?

Regards,
Christian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

云巢 2024-10-20 12:09:05
void Main()
{
    Func<int> m1=()=>1;
    Console.WriteLine(A(m1));

    Func<int,int> m2=i=>i;
    Console.WriteLine(A(m2,55));
}

object A(Delegate B,params object[] args)
{

    return B.Method.Invoke(B.Target,args);
}

...再见类型安全

void Main()
{
    Func<int> m1=()=>1;
    Console.WriteLine(A(m1));

    Func<int,int> m2=i=>i;
    Console.WriteLine(A(m2,55));
}

object A(Delegate B,params object[] args)
{

    return B.Method.Invoke(B.Target,args);
}

...goodbye type-safety

凉薄对峙 2024-10-20 12:09:05

Func是不带参数并返回 object 的方法的委托。如果将其更改为 Func,它将接受一个参数并返回对象:

public object A(Func<object, object> B, params object[] args)
{
    object x = B(args);

    return x;
}

Func<object> is a delegate for a method that takes no arguments and returns object. If you change it to Func<object,object>, it will take an argument and return object:

public object A(Func<object, object> B, params object[] args)
{
    object x = B(args);

    return x;
}
一瞬间的火花 2024-10-20 12:09:05

这应该可以做到:

public object A(Func<object[], object> B, params object[] args) 
{     
     object x = B(args);     
     return x; 
}

This should do it:

public object A(Func<object[], object> B, params object[] args) 
{     
     object x = B(args);     
     return x; 
}
々眼睛长脚气 2024-10-20 12:09:05

您应该有这样的代码:

public object A(Func<object[], object> B, params object[] args)
{
    object x = B(args);

    return x;
}

您缺少 Func 重载需要接受参数的对象数组。

无论如何,如果您需要此方法“A”来接受无参数函数,则应该创建“A”的无参数函数参数重载。

You should have a code like this one:

public object A(Func<object[], object> B, params object[] args)
{
    object x = B(args);

    return x;
}

You're missing that the Func overload needs to accept your object array of arguments.

Anyway, if you need this method "A" to accept parameterless functions, you should create a paremeterless function parameter overload of "A".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文