构造函数如下所示:
public NameAndValue(string name, string value)
我需要使用Reflection将其作为MethodInfo。它尝试了以下方法,但没有找到构造函数(GetMethod
返回null
)。
MethodInfo constructor = typeof(NameAndValue).GetMethod(".ctor", new[] { typeof(string), typeof(string) });
我做错了什么?
答案 0 :(得分:9)
Type.GetConstructor。注意这会返回一个ConstructorInfo而不是MethodInfo,但它们都派生自MethodBase,因此大多数都是相同的成员。
答案 1 :(得分:5)
ConstructorInfo constructor = typeof(NameAndValue).GetConstructor
(new Type[] { typeof(string), typeof(string) });
你应该在ConstructorInfo中拥有你需要的元素,我知道无法为构造函数获取MethodInfo。
善,
丹
答案 2 :(得分:0)
我相信你唯一缺少的是正确的BindingFlags。我没有在此示例中指定参数类型,但您可以这样做。
var typeName = "System.Object"; // for example
var type = Type.GetType(typeName);
var constructorMemberInfos = type.GetMember(".ctor", BindingFlags.CreateInstance | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
// Note that constructorMemberInfos will be an array of matches