0

关于如何使用 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);
        }
    }
4

1 回答 1

0

这是GhostDoc-SubMain的创建者认识到的问题,并在版本5.1.16036中修复了该问题。

于 2016-04-01T12:05:11.680 回答