【效果】html
【示例代碼】spa
<?xml version="1.0" encoding="utf-8" ?> <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> <CodeSnippet Format="1.0.0"> <Header> <!--提示--> <Title>Code Snippet for region</Title> <!--縮寫--> <Shortcut>reg</Shortcut> <!--做者--> <Author>Jun</Author> </Header> <Snippet> <!--生成的代碼,Language語言,Delimiter分隔符,$end$結束時光標停放的位置--> <Code Language="CSharp" Delimiter="$"> <![CDATA[ #region $regionDescription$ $end$ #endregion ]]> </Code> <Declarations> <!--佔位符--> <Literal> <ID>regionDescription</ID> <ToolTip>regionDescription</ToolTip> <Default>描述</Default> </Literal> </Declarations> </Snippet> </CodeSnippet> <!-- other snippets --> </CodeSnippets>
【拓展】code
http://www.cnblogs.com/anderslly/archive/2009/02/16/vs2008-code-snippets.htmlorm