我有这样的课
public class cmdGetAllCustomers : CommandBase
{
public cmdGetAllCustomers(WToken token)
: base(token, false, typeof(WCustomer))
{
}
// ...
}
我需要获取第三个基本构造函数参数的类型。在这种情况下,将是WCustomer
。
我已经找到了CodeClass
该类的CodeFunction
对象以及在我的理解中代表构造函数的对象。
里面CodeFunction
几乎CodeParameters
描述了我正在搜索的所有构造函数参数,除了来自基类的参数。
有人知道如何使用 EnvDTE 获取这些类型吗?