Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/CodeSnippet">
- <CodeSnippet Format="1.0.0">
- <Header>
- <Title>cl</Title>
- <Shortcut>cl</Shortcut>
- <Description>Code snippet for creating a list of give objects.</Description>
- <Author>Deyan Dachev</Author>
- <SnippetTypes>
- <SnippetType>Expansion</SnippetType>
- </SnippetTypes>
- </Header>
- <Snippet>
- <Declarations>
- <Literal>
- <ID>type</ID>
- <Default>var</Default>
- <ToolTip>Type of object contained in the list.</ToolTip>
- </Literal>
- <Literal>
- <ID>name</ID>
- <Default>name</Default>
- <ToolTip>Name of the list.</ToolTip>
- </Literal>
- </Declarations>
- <Code Language="CSharp">
- <![CDATA[List<$type$> $name$ = new List<$type$>();
- $end$]]>
- </Code>
- </Snippet>
- </CodeSnippet>
- </CodeSnippets>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement