反射,从方法中获取返回值

发布于 2024-10-25 21:36:38 字数 253 浏览 1 评论 0原文

我们如何执行一个方法并从反射中获取返回值。

Type serviceType = Type.GetType("class", true);
var service = Activator.CreateInstance(serviceType);
serviceType.InvokeMember("GetAll", BindingFlags.InvokeMethod, Type.DefaultBinder, service, null);

How can we exacute a method and get the return value from Reflection.

Type serviceType = Type.GetType("class", true);
var service = Activator.CreateInstance(serviceType);
serviceType.InvokeMember("GetAll", BindingFlags.InvokeMethod, Type.DefaultBinder, service, null);

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

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

发布评论

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

评论(4

鹤仙姿 2024-11-01 21:36:38

我不确定您是否对返回值或返回类型感兴趣。
下面的代码回答了这两个问题,我尝试执行 sum 方法并获取值以及返回值的类型:

class Program
{
    static void Main(string[] args)
    {
        var svc = Activator.CreateInstance(typeof(Util));
        Object ret = typeof(Util).InvokeMember("sum", BindingFlags.InvokeMethod, Type.DefaultBinder, svc, new Object[] { 1, 2 });
        Type t = ret.GetType();

        Console.WriteLine("Return Value: " + ret);
        Console.WriteLine("Return Type: " + t);
    }
}

class Util
{
    public int sum(int a, int b)
    {
        return a + b;
    }
}

I am not sure whether you are interested on the return value or the return Type.
Well both are answered by the code below, where I try to execute the sum method and get the value as well as the Type of the return value:

class Program
{
    static void Main(string[] args)
    {
        var svc = Activator.CreateInstance(typeof(Util));
        Object ret = typeof(Util).InvokeMember("sum", BindingFlags.InvokeMethod, Type.DefaultBinder, svc, new Object[] { 1, 2 });
        Type t = ret.GetType();

        Console.WriteLine("Return Value: " + ret);
        Console.WriteLine("Return Type: " + t);
    }
}

class Util
{
    public int sum(int a, int b)
    {
        return a + b;
    }
}
旧伤慢歌 2024-11-01 21:36:38

将 InvokeMember 结果转换为方法调用实际返回的类型。

cast the InvokeMember result to the type actually returned by the method call.

请恋爱 2024-11-01 21:36:38

http://msdn.microsoft.com/en-us/library/de3dhzwy.aspx

“返回值

类型:System.Object

表示被调用成员的返回值的对象。”

http://msdn.microsoft.com/en-us/library/de3dhzwy.aspx

"Return Value

Type: System.Object

An object representing the return value of the invoked member."

您的好友蓝忘机已上羡 2024-11-01 21:36:38

你可以尝试这样的事情:

ConstructorInfo constructor = Type.GetType("class", true).GetConstructor(Type.EmptyTypes);
object classObject = constructor.Invoke(new object[]{});

MethodInfo methodInfo = Type.GetType("class", true).GetMethod("GetAll");
object returnValue = methodInfo.Invoke(classObject , new object[] { });

我还没有编译它,但它应该可以工作。

You can try something like this:

ConstructorInfo constructor = Type.GetType("class", true).GetConstructor(Type.EmptyTypes);
object classObject = constructor.Invoke(new object[]{});

MethodInfo methodInfo = Type.GetType("class", true).GetMethod("GetAll");
object returnValue = methodInfo.Invoke(classObject , new object[] { });

I haven't compiled it, but it should work.

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