c# – 从T4模板中的CodeProperty中检索属性类型

前端之家收集整理的这篇文章主要介绍了c# – 从T4模板中的CodeProperty中检索属性类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用T4实现一些相当直接的代码生成,但是当涉及到属性生成的细节时,我仍然遇到了一个基本问题.当我访问我想要生成的CodeProperty对象的Type属性时,它们返回’System .__ ComObject’而不是属性的实际类型.

我正在使用EnvDTE查找项目中包含我的自定义属性的所有类.我用它来标记某些代码生成类.到现在为止还挺好.然后我踩过我班级的所有CodeElement对象.我可以找到所有属性,只是我无法得到它们的“类型”.

这是我T4的片段:

public class <#= cls.Name #>_DTO
{
<#
    foreach (CodeElement child in cls.Children)
    {
        if (child.Kind == vsCMElement.vsCMElementProperty)
        {
            var prop = child as CodeProperty;
#>

    public <#= prop.Type.ToString() + " " + child.Name #> { get; set; }

<#
    }
  }
}
#>

输出的样本是:

public class TestResult_DTO
{
    public System.__ComObject TestType { get; set; }
}

正如您所看到的,我接近有效输出,它只是我正在努力访问的属性的类型.

解决方法

看看文档,我怀疑你想要AsString而不是ToString().那会叫 CodeTypeRef.AsString

AsString return a string representation for the CodeTypeRef in the language being modeled. For example,if the vsCMTypeRef type is vsCMTypeRefInt,then the string would be “Int” for Visual C# and “Long” for Visual Basic.

我自己从来没有写过这种代码,所以我只是按文档编写,但值得一试:)

原文链接:https://www.f2er.com/csharp/91934.html

猜你在找的C#相关文章