本文基于Visual Studio 2010 RC版本
1. 在项目中新增一个xml文件为carysn.snippet,然后插入代码段,如下图:
2. 完成后会自动插入代码段模板,我们将模板中相关信息修改后如下:
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippet Format="
<Header>
<Title>CarySNTest</Title>
<Author>Cary</Author>
<Shortcut>CaryShortcut</Shortcut>
<Description>It is a test snippet</Description>
<SnippetTypes>
<SnippetType>SurroundsWith</SnippetType>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>Author</ID>
<Default>
</Literal>
</Declarations>
<Code Language="CSharp">
<![CDATA[
/*--------------------------
Author:$Author$
Date:
--------------------------*/
class Program
{
static void
{
Console.WriteLine("Hello World!");
}
}
]]>
</Code>
</Snippet>
</CodeSnippet>
3. 打开代码段管理器,如下图:
4.导入我们创建好的代码段,如下图:
5.然后我们就可以在程序中使用了,如下图: