2013年8月14日星期三

Header files in C # VS2010 add files annotated method

 

steps :

 

1.VS2010 found ( installation drive to the D drive for example ) D: \ Program Files (x86) \ Microsoft Visual Studio 10.0 \ Common7 \ IDE \ ItemTemplatesCache \ CSharp \ Code \ 2052 \ Class.zip

 

2. Class.cs file in the original code is as follows :

 
        
   
using System; 
using System.Collections.Generic;
$
if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$
using System.Text;

namespace $rootnamespace$
{
class $safeitemrootname$
{
}
}
  
   View Code  
 

3. Class.cs file, add the following code :

 
  
/*---------------------------------------------------------------- 
// Copyright (C) 2013 郑州昭元互联科技
// 版权所有。
//
// 文件名:$safeitemrootname$.cs
// 功能描述:
//
// 创建标识:Seven Song(宋坤明) $time$
//
// 修改标识:
// 修改描述:
//
// 修改标识:
// 修改描述:
//
//----------------------------------------------------------------
*/
using System;
using System.Collections.Generic;
$
if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$
using System.Text;

namespace $rootnamespace$
{
class $safeitemrootname$
{
}
}
 
 

4. Finally you add in your own class project will generate you add the default logo , example code is as follows :

 
  
/*---------------------------------------------------------------- 
// Copyright (C) 2011 郑州昭元互联科技
// 版权所有。
//
// 文件名:Mytest.cs
// 功能描述:
//
// 创建标识:Seven Song(宋坤明) 2013/8/6 9:41:19
//
// 修改标识:
// 修改描述:
//
// 修改标识:
// 修改描述:
//
//----------------------------------------------------------------
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ZYTEC.WebSite.CMS.Web.MVC.Extensions
{
class Mytest
{
}
}
 
 

this end , I hope for your help

 

 

没有评论:

发表评论