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