VS类和方法注释模板生成

内容参考自:

类注释:https://www.cnblogs.com/yilezhu/p/11132090.html

方法注释:https://blog.csdn.net/lyzyung/article/details/82258688?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

类注释

1.首先定位到你的VS的安装目录:

E:\Program Files (x86)\Microsoft Visual Studio 14.0

Common7\IDE\ItemTemplatesCache\CSharp\Code\2052\Class

这里根据你的vs版本可能路径要做适当的调整,具体怎么调整,我想聪明如你,应该能够理解

2.修改并保存模板

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$
{
	/**
	 *┌────────────────────────────────────────────────┐
	 *│ 描    述:$safeitemrootname$                                                    
	 *│ 作    者:xlwang                                              
	 *│ 版    本:1.0                                              
	 *│ 创建时间:$time$                        
	 *└────────────────────────────────────────────────┘
	 **/
    class $safeitemrootname$
    {
    }
}

方法注释

使用代码片段完成方法快速注释
使用方法:在vs中选择工具->代码片段管理器->导入
comment为快捷键设置


    
        
            
方法标准注释 comment 更新代码注释 的代码片段 xlwang Expansion
Summary 摘要 Param 参数 Retrun 返回值 CreateDate 日期 Author 作者 xlwang

 

你可能感兴趣的:(asp.net)