以前用flash builder的时候都可以配置类文件注释模块,今天想在vs里面实现,问了下度娘,很多人都已经做过啦。我直接记录一下就行,方便查找
直接定位VS的安装目录,然后根据这个地址找到
Microsoft Visual Studio 11.0\Common7\IDE\ItemTemplatesCache\CSharp\Code\2052\Class\Class.cs
添加自己的注释块就OK啦。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
using System; using UnityEngine; using System.Collections.Generic; namespace $rootnamespace$ { /// <summary> /// Author : YangDan /// DateTime : $time$ /// Blog : blog.gamerismer.com /// Mail : admin@gamerisker.com /// Description : /// </summary> class $safeitemrootname$ { #region public variables public $safeitemrootname$() { } #endregion; #region private variables #endregion; #region public function #endregion; #region private function #endregion; } } |
1 Comment
qeqw