1

我有这样的课

public class cmdGetAllCustomers : CommandBase
{
    public cmdGetAllCustomers(WToken token)
        : base(token, false, typeof(WCustomer))
    {
    }

    // ...
}

我需要获取第三个基本构造函数参数的类型。在这种情况下,将是WCustomer

我已经找到了CodeClass该类的CodeFunction对象以及在我的理解中代表构造函数的对象。

里面CodeFunction几乎CodeParameters描述了我正在搜索的所有构造函数参数,除了来自基类的参数。

有人知道如何使用 EnvDTE 获取这些类型吗?

4

1 回答 1

0

如果发现评论中提出的解决方案并不是真正易于阅读,因此将不会被阅读。

所以,这里是对我有用的解决方案:

谢谢,我得到了完整的内容并解析它。应该是解决办法!(字符串函数内容 = codeFunction.StartPoint.CreateEditPoint().GetText(codeFunction.EndPoint);)

于 2013-06-06T10:51:36.677 回答