具有DateTime.Now的自定义代码段
本文关键字:代码 自定义 DateTime Now 具有 | 更新日期: 2023-09-27 18:21:50
我正试图在VS2010中为我的C#代码创建一个小的自定义片段。它基本上是为了提供信息而插入一个注释块。不过,在这段代码中,我希望在插入代码片段时自动插入当前日期。
这是我目前拥有的片段:
<CodeSnippet Format="1.0.0">
<Header>
<Title>
C# Class Comments
</Title>
<Shortcut>ccom</Shortcut>
</Header>
<Snippet>
<Declarations>
<Object>
<ID>DateTime</ID>
<Type>System.DateTime</Type>
<Function>DateTime.Now()</Function>
</Object>
<Literal>
<ID>Author</ID>
<ToolTip>Replace with name creator of class.</ToolTip>
<Default>"Author name"</Default>
</Literal>
<Literal>
<ID>Date</ID>
<ToolTip>Replace with date class was created</ToolTip>
<Default>"Date"</Default>
</Literal>
<Literal>
<ID>Modified</ID>
<ToolTip>Replace with modified date of class</ToolTip>
<Default>"Modified"</Default>
</Literal>
<Literal>
<ID>Description</ID>
<ToolTip>Replace with a short description of what the class is used for</ToolTip>
<Default>"Description"</Default>
</Literal>
</Declarations>
<Code Language="CSharp">
<![CDATA[
//*******************************************************************************;
// Author: $Author$
// Created Date: $DateTime$
// Modified Date: $Modified$
// Description: $Description$
//*******************************************************************************;
]]>
</Code>
</Snippet>
</CodeSnippet>
我该怎么做才能将代码片段插入代码中的日期?
不幸的是,这是不可能的。Visual Studio代码段体系结构不支持当前日期/时间等项的替换宏