VS2012 在创建C#类时添加文件描述

在新建一个C#类时,为了描述该类的功能、以及文件建立的相关信息,并保护自己的版权要在文件的开头添加一些信息。如下:

/***********************************************************************************
*        Filename :Class3
*        Description : 
*        Date:2014/5/15 16:31:29
 *       Machinename:PC-201305061330
*        Created by: <T> Andy Sun
*		 All rights reserved
*
*		ChangeLog:
*		2014/5/15 16:31:29:
 *		    Created!
************************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


而手动添加即费时又费力,好在vs为我们提供了模版更改接口,下面就来简单介绍一下。

1、首先,要找到C#类模版的所在。一般情况下会是在%VS安装目录%\Common7\IDE\ItemTemplatesCache\CSharp\Code\2052\Class(或%VS安装目录%\Common7\IDE\ItemTemplates\CSharp\Code\2052\Class)中的class.cs文件。

2、打开该文件,文件头部添加如下信息:

/***********************************************************************************
*        Filename :$safeitemrootname$
*        Description : 
*        Date:$time$
 *       Machinename:$machinename$
*        Created by: <T> Andy Sun
*		 All rights reserved
*
*		ChangeLog:
*		$time$:
 *		    Created!
************************************************************************************/
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$
    {
    }
}
3、保存文件后,新建C#类时即可看到在文件头部自动添加了相关信息。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值