Created
August 11, 2015 13:41
-
-
Save oscarandreu/6718f8f5a192645d394d to your computer and use it in GitHub Desktop.
This file contains hidden or 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>Class regions</Title> | |
| <Author>Óscar Andreu</Author> | |
| <Description>Build the structure of a new class.</Description> | |
| <Shortcut>Class_Regions</Shortcut> | |
| </Header> | |
| <Snippet> | |
| <Imports> | |
| </Imports> | |
| <!--<Declarations> | |
| <Literal> | |
| <ID>ClassName</ID> | |
| <Type>Object</Type> | |
| <ToolTip>The class name.</ToolTip> | |
| <Default>MyClass</Default> | |
| </Literal> | |
| </Declarations>--> | |
| <Code Language="VB" Kind="method body"> | |
| <!--<![CDATA[Do Until $Condition$ | |
| Loop]]>--> | |
| <![CDATA[ | |
| #Region " Events " | |
| #End Region | |
| #Region " Declarations " | |
| #End Region | |
| #Region " Properties " | |
| #End Region | |
| #Region " Constructor " | |
| #End Region | |
| #Region " Public Functions " | |
| #End Region | |
| #Region " Private Functions " | |
| #End Region | |
| ]]> | |
| </Code> | |
| </Snippet> | |
| </CodeSnippet> | |
| </CodeSnippets> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment