gpt4 book ai didi

c# - 给定类型名称和方法名称作为字符串调用静态类的方法

转载 作者:IT王子 更新时间:2023-10-29 04:23:31 27 4
gpt4 key购买 nike

请问,在给定类名和方法名的情况下,我如何才能在静态类上调用方法?

例如:

给定 System.EnvironmentGetFolderPath,我想使用 Reflection 调用 Environment.GetFolderPath().

最佳答案

只是

Type.GetType(typeName).GetMethod(methodName).Invoke(null, arguments);

其中 typeName 是类型的字符串名称,methodName 是方法的字符串名称,arguments 是一个对象数组,其中包含用于调用方法的参数。

关于c# - 给定类型名称和方法名称作为字符串调用静态类的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1418209/

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