通过GhostDoc实现自定义方法概要(summary)

首先是下载GhostDoc

  来自园友:http://www.cnblogs.com/VAllen/p/GhostDocPro49.html

修改模板

  安装好后,修改下模板,工具>GhostDoc Pro>Options>GhostDoc Pro>Rules>Methods>Rule template,编辑模板

  我设置后整个导出是这样的,my

  其中用到了自定义的全局属性:工具>GhostDoc Pro>Options>GhostDoc Pro>Global Properties>UserName

最终效果

        /// <summary>
        ///  说明
        /// </summary>
        /// <param name="str"></param>
        /// <remarks>author:lorne date:2016-04-09</remarks>
        public void Show(string str)
        {
            
        }
原文地址:https://www.cnblogs.com/hnlong1/p/5372093.html