我的意思是我们总是得到这个代码:
// ConsoleApplication1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int main()
{
return 0;
}
有没有办法将其更改为其他代码?因此,当我开始一个新项目时,我总是希望得到这样的东西:
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
return 0;
}
我知道这不是一个很大的区别,但我真的不想总是编辑,有时候很无聊
答案 0 :(得分:0)
Microsoft网站上有一些文档。
我认为从这里开始你需要的只是:
https://docs.microsoft.com/en-us/visualstudio/ide/customizing-project-and-item-templates