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="csharp"><![CDATA[ public IState $name$State
21 {
22 get
23 {
24 return this.States["$name$"];
25 }
26 }
27 ]]></Code>
28 </Snippet>
29 </CodeSnippet>
30</CodeSnippets>