GhostDoc Context.CurrentCodeElement.HasBaseTypes始终返回false

时间:2016-02-05 06:06:05

标签: c# .net ghostdoc

关于如何使用Ghost Doc获取类的基类型的任何想法?

根据当前类继承的基类,我想自定义当前类的摘要注释。

这是我到目前为止所做的:

private string GetClassDescription()
    {
        string type = string.Empty;
        Words words = Context.GetWords(Context.CurrentCodeElement.Name);
        string wordsAll = (words == null ? Context.CurrentCodeElement.Name : words.All);

        if (Context.CurrentCodeElement.HasBaseTypes)
            type = Context.CurrentCodeElement.BaseTypes[0];

        if (Context.)

        switch (type)
        {
            case "DomainBase":
                return string.Format("Represents the {0} domain class.", wordsAll);

            default:
                return string.Format("Represents the {0} class.", wordsAll);
        }
    }

1 个答案:

答案 0 :(得分:0)

这是 GhostDoc - SubMain 的创建者认可的问题,并且已在版本 5.1.16036 中修复此问题。