构造函数如下所示:
public NameAndValue(string name, string value)
我需要使用反射将它作为 MethodInfo 获取。它尝试了以下操作,但没有找到构造函数(GetMethod
returns null
)。
MethodInfo constructor = typeof(NameAndValue).GetMethod(".ctor", new[] { typeof(string), typeof(string) });
我究竟做错了什么?