<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
    <CodeSnippet Format="1.0.0">
        <Header>
            <Title>Generate Type In New File - No Enclosing Namespace</Title>
            <Description>Fragmento de código para generar un tipo en un nuevo archivo sin ningún espacio de nombres envolvente</Description>
            <Author>Microsoft Corporation</Author>
            <SnippetTypes>
                <SnippetType>Refactoring</SnippetType>
            </SnippetTypes>
        </Header>
        <Snippet>
            <Declarations>
                <Literal Editable="true">
                    <ID>modifiers</ID>
                    <Default></Default>
                </Literal>
                <Literal Editable="true">
                    <ID>typekind</ID>
                    <Default>class</Default>
                </Literal>
                <Literal Editable="true">
                    <ID>typename</ID>
                    <Default>name</Default>
                </Literal>
                <Literal Editable="true">
                    <ID>typebase</ID>
                    <Default></Default>
                </Literal>
                <Literal>
                    <ID>linqusing</ID>
                    <Function>CheckMinimumTargetFramework(3.5,
using System.Linq;)</Function>
                </Literal>
            </Declarations>
            <Code Language="csharp">
                <![CDATA[$end$using System;
using System.Collections.Generic;$linqusing$
using System.Text;

$modifiers$ $typekind$ $typename$ $typebase$
{
}
]]>
            </Code>
        </Snippet>
    </CodeSnippet>
</CodeSnippets>
