标签:
类模板制作:
路径:C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\ItemTemplatesCache\CSharp\Code\2052\Class.zip
操作:打开Class.cs文件,编辑内容如下:
// <copyright file="$safeitemname$.cs" company="fengjin"> // 创建时间: $time$ // </copyright> using System; using System.Collections.Generic; $if$ ($targetframeworkversion$ >= 3.5)using System.Linq; $endif$using System.Text; namespace $rootnamespace$ { /// <summary> /// $itemname$类 /// </summary> public class $safeitemrootname$ { } }
有个东西,不知道是啥,目前我就叫它变量吧。下面列举一些变量的具体含义:
$safeitemname$:文件名字
$time$:时间
$clrversion$:CLR版本
$itemname$:类名称
$machinename$:机器名称
$rootnamespace$:命名空间
标签:
原文地址:http://www.cnblogs.com/fengjin/p/4471235.html