程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> VS 在創建C#類時添加文件描述,

VS 在創建C#類時添加文件描述,

編輯:關於.NET

VS 在創建C#類時添加文件描述,


在新建一個C#類時,為了描述該類的功能、以及文件建立的相關信息,並保護自己的版權要在文件的開頭添加一些信息。如下:

 1 /*********************************************************************************** 
 2 *        Filename :Class3 
 3 *        Description :  
 4 *        Date:2014/5/15 16:31:29 
 5  *       Machinename:PC-201305061330 
 6 *        Created by: <T> Andy Sun 
 7 *        All rights reserved 
 8 * 
 9 *       ChangeLog: 
10 *       2014/5/15 16:31:29: 
11  *          Created! 
12 ************************************************************************************/  
13 using System;  
14 using System.Collections.Generic;  
15 using System.Linq;  
16 using System.Text;  
17 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、打開該文件,文件頭部添加如下信息:

 1 /*********************************************************************************** 
 2 *        Filename :$safeitemrootname$ 
 3 *        Description :  
 4 *        Date:$time$ 
 5  *       Machinename:$machinename$ 
 6 *        Created by: <T> Andy Sun 
 7 *        All rights reserved 
 8 * 
 9 *       ChangeLog: 
10 *       $time$: 
11  *          Created! 
12 ************************************************************************************/  
13 using System;  
14 using System.Collections.Generic;  
15 $if$ ($targetframeworkversion$ >= 3.5)using System.Linq;  
16 $endif$using System.Text;  
17 $if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;  
18 $endif$  
19 namespace $rootnamespace$  
20 {  
21     class $safeitemrootname$  
22     {  
23     }  
24 }  

3、保存文件後,新建C#類時即可看到在文件頭部自動添加了相關信息。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved