I looked at the mbox snippet created by microsoft and came up with the following:
<?xml version="1.0" encoding="utf-8"?> <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> <CodeSnippet Format="1.0.0"> <Header> <Title>dw</Title> <Shortcut>dw</Shortcut> <Description>Code snippet for System.Diagnostics.Debug.WriteLine</Description> <Author>MisaThinksMeDidIt</Author> <SnippetTypes> <SnippetType>Expansion</SnippetType> </SnippetTypes> </Header> <Snippet> <Declarations> <Literal> <ID>string</ID> <ToolTip>String to display</ToolTip> <Default>"Test"</Default> </Literal> <Literal Editable="false"> <ID>SystemDiagnosticsDebugWriteLine</ID> <Function>SimpleTypeName(global::System.Diagnostics.Debug)</Function> </Literal> </Declarations> <Code Language="csharp"><![CDATA[$SystemDiagnosticsDebugWriteLine$.WriteLine($string$);$end$]]></Code> </Snippet> </CodeSnippet> </CodeSnippets>
source share