T4toolbox 中 T4 生成器的用途是什么

发布于 2024-08-28 03:12:08 字数 489 浏览 6 评论 0原文

我正在使用 T4toolbox,我很困惑生成器的用途。我可以运行以下命令

public class Generator1 : Generator
{

    protected override void RunCore()
    {

        Template1 t = new Template1();
        t.Output.File = "t3.txt";
        t.Render();

    }
}

,也可以直接运行 t4 脚本,如下所示。

Template1 t = new Template1();

t.Output.File = "t3.txt";

t.Render();

但我也可以使用 t4 脚本而不使用生成器来执行相同的操作。 所以我的意思是可以用两种方法“脚本 --> 生成器 --> 模板”和“脚本 --> 模板”做同样的事情,我错过了什么吗?

I am using T4toolbox, I am confused what the generator is for. I can run the following

public class Generator1 : Generator
{

    protected override void RunCore()
    {

        Template1 t = new Template1();
        t.Output.File = "t3.txt";
        t.Render();

    }
}

or I can run t4 script directly like the following.

Template1 t = new Template1();

t.Output.File = "t3.txt";

t.Render();

But I can do the same using t4 script without generator as well.
So I mean can do the same thing with two approach "script --> generator --> template" and "script --> template", am I missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最冷一天 2024-09-04 03:12:08

当想要封装多个模板时,生成器类很有用。更多信息请参见:http://www.olegsych。 com/2008/09/t4-tutorial-creating-complex-code-generators/

Generator class is useful when want to encapsulate multiple templates. More here: http://www.olegsych.com/2008/09/t4-tutorial-creating-complex-code-generators/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文