标签: c# visual-studio auto-generate
在C ++中,我可以自动生成一些类,然后将空的cpp文件修改为
#include "myautoclass.cpp"
在预建步骤中,这些类将被编译和链接。有没有办法在预建步骤中在C#中执行此操作?我在VS2010上。感谢。
答案 0 :(得分:3)
生成类(和任何其他文件)的一种方法是使用T4 templates。
出色的set of tutorials can be found here。