Last active
July 8, 2022 11:34
-
-
Save schmich/45ab9181ab83fb74deca to your computer and use it in GitHub Desktop.
Visual Studio snippet to insert Debug.WriteLine with dw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 Debug.WriteLine</Description> | |
<Author>Chris Schmich</Author> | |
<SnippetTypes> | |
<SnippetType>Expansion</SnippetType> | |
</SnippetTypes> | |
</Header> | |
<Snippet> | |
<Imports> | |
<Import> | |
<Namespace>System.Diagnostics</Namespace> | |
</Import> | |
</Imports> | |
<Declarations> | |
<Literal Editable="false"> | |
<ID>Debug</ID> | |
<Function>SimpleTypeName(Debug)</Function> | |
</Literal> | |
</Declarations> | |
<Code Language="csharp"> | |
<![CDATA[$Debug$.WriteLine($end$);]]> | |
</Code> | |
</Snippet> | |
</CodeSnippet> | |
</CodeSnippets> |
Great work, thx.
On my VS2019 it doesn't work.
On my VS2019 it doesn't work.
Works fine for me. Save it in a .snippet file and select to import it to My Snippets.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you, works so well