0

这可能是愚蠢的,但我在记事本中寻找 F5 之类的快捷方式来添加日期时间戳,用于 c# 文件中的简单摘要任务,例如

        /// <summary>
        /// Created By: Developer Name
        /// Created On: 12:08 PM 10/28/2013
        /// Pass HTML SELECT control and IsFirstOptionToRemove (optional) to find all its values and displayed text
        /// </summary>
        /// <param name="selectControl"></param>
        /// <param name="IsFirstOptionToRemove"></param>
        /// <returns>retruns dictionary containing key value pairs of select control options. </returns>

我不希望所有这些行都是片段,但我可以在我的片段中包含当前日期时间戳。我没有找到动态修改自定义代码段的方法。

4

1 回答 1

2

这里描述了一个基于宏的解决方案:

http://www.dmcinfo.com/latest-thinking/blog/articletype/articleview/articleid/62/net-commenting-macro.aspx

基本上,你制作一个这样的宏:

 Sub CommentInitialsDate()
     DTE.ActiveDocument.Selection.Text = "// [INSERT MY INITIALS HERE] " & Format(Date.Today, "yyyy-MM-dd") & " - "
 End Sub

然后你分配一个快捷键。

于 2013-10-28T06:56:00.583 回答