1、首先在VS的安裝路徑下找到如下幾個文件夾:
C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\ItemTemplates\CSharp\Code\2052
2.分別進入這幾個文件夾中,將原文件備份至其他位置,修改后進行替換即可
3.友情提供自用表頭注釋
using System;
using System.Collections.Generic;
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$using System.Text;
$if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;
$endif$
namespace $rootnamespace$ {
///<summary>
/// 版 本:v1.0.0
/// 創建人:萬邦科技-Anthony
/// 日 期:$time$
/// 描 述:
///</summary>
public class $safeitemrootname$
{
}
}