构造函数如下所示:
public NameAndValue(string name, string value)
我需要使用反射将其作为MethodInfo进行获取。它尝试了以下操作,但是没有找到构造函数(
GetMethod
返回null
)。MethodInfo constructor = typeof(NameAndValue).GetMethod(".ctor", new[] { typeof(string), typeof(string) });
我在做什么错?
最佳答案
Type.GetConstructor。请注意,这返回的是ConstructorInfo而不是MethodInfo,但是它们都从MethodBase派生,因此具有大多数相同的成员。
关于c# - 如何使用反射将构造函数获取为MethodInfo,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1378020/