C# 自定义生成类模板

D:\VS2013\Common7\IDE\ItemTemplates\CSharp\Code\2052\Class

C# 自定义生成类模板_第1张图片

#region
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Text.RegularExpressions;
using System.Xml;
#endregion

namespace $rootnamespace$
{
    #region 项目概述
    /// 
    /// $safeitemrootname$
    /// @ 创建人:xxxx
    /// @ 创建时间:$time$
    /// @ 测试流程:
    ///     
    ///     
    ///     
    ///     
    ///     
    ///     
    ///     
    /// @ 显示结论:
    /// 
    #endregion
    class $safeitemrootname$
    {

    }
}

高版本vs可用
项目->导出模板
D:\VS\VS_IDE\Common7\IDE\ProjectTemplates

放进去直接添加可用。
C# 自定义生成类模板_第2张图片
C# 自定义生成类模板_第3张图片

你可能感兴趣的:(C#,c#)