C#开发 环境配置
- 代码模板:
VS2015的参考路径:
C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\ItemTemplatesCache\CSharp\Code\2052\Class
修改此文件即可修改类模板。
例:
/**
*┌────────────────────────────────────────────────┐
*│ ClassName :$safeitemrootname$
*│ Description :
*│ Author :songpeng
*│ Version :1.0.0
*│ CreatedTime :$time$
*└────────────────────────────────────────────────┘
**/
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$
{
class $safeitemrootname$
{
}
}