插入当前日期时间在Visual Studio代码段(Insert current datetime

2019-06-23 21:49发布

有谁知道我可以插入在Visual Studio 2008中摘录的当前日期和时间的方法吗? 我想在我的是.snippet文件的正文是这样的......

  <Code Language="csharp">
    <![CDATA[
  // $DateTime$
  // more code here for my snippet...
  </Code>

Answer 1:

有可用的片断没有日期时间函数,但这里是将插入当前日期时间的宏:

Sub PrintDateTime()
    If (Not IsNothing(DTE.ActiveDocument)) Then
        Dim selection As TextSelection = DTE.ActiveDocument.Selection
        selection.Insert(DateTime.Now.ToString())
    End If
End Sub

您可以打开使用Alt + F8宏资源管理器,并创建一个新的模块,并粘贴上面的代码生成模块内。

然后创建一个新的快捷键,并将其绑定到您的宏。



文章来源: Insert current datetime in Visual Studio Snippet