您的位置:首页 > 编程语言

自定义Microsoft Visual Studio 代码模板,增加公司和个人信息

2015-01-15 13:27 519 查看
C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\ItemTemplates\CSharp目录里面有各种新建模板分类:

#region << 版 本 注 释 >>
/*
* ========================================================================
* Copyright Notice © 2010-2015 wangyunpeng All rights reserved .
* ========================================================================
* 机器名称:$machinename$
* 文件名:  $safeitemname$
* 版本号:  V1.0.0.0
* 创建人:  wangyunpeng
* 创建时间:$time$
* 描述    :
* =====================================================================
* 修改时间:$time$
* 修改人  :$username$
* 版本号  : V1.0.0.0
* 描述    :
*/
#endregion
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$
{
}
}


Class.cs
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐