master
 1<?xml version="1.0"?>
 2<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
 3  <CodeSnippet Format="1.0.0">
 4    <Header>
 5      <Title>IState wrapper</Title>
 6      <Author>MbUnit</Author>
 7      <Description>Expansion snippet for a IState wrapper</Description>
 8      <Shortcut>state</Shortcut>
 9      <SnippetTypes>
10        <SnippetType>Expansion</SnippetType>
11      </SnippetTypes>
12    </Header>
13    <Snippet>
14      <Declarations>
15        <Literal>
16          <ID>name</ID>
17          <ToolTip>State Name</ToolTip>
18        </Literal>
19      </Declarations>
20      <Code Language="VB"><![CDATA[		Public Property $name$State as IState
21			Get
22				Return Me.States("$name$")
23			End Get
24		End Property	]]></Code>
25    </Snippet>
26  </CodeSnippet>
27</CodeSnippets>