T4toolbox 中 T4 生成器的用途是什么
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当想要封装多个模板时,生成器类很有用。更多信息请参见: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/