我正在使用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脚本来做同样的事情。 所以我的意思是可以用两种方法“脚本 - >生成器 - >模板”和“脚本 - >模板”做同样的事情,我错过了什么?
答案 0 :(得分:3)
当想要封装多个模板时,Generator类很有用。更多信息:http://www.olegsych.com/2008/09/t4-tutorial-creating-complex-code-generators/