<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
    <CodeSnippet Format="1.0.0">
        <Header>
			<Title>Old prop snippet with NotifyPropertyChanged method call</Title>
			<Shortcut>chprop</Shortcut>
      <Author>Bart Lannoeye</Author>
		</Header>
        <Snippet>
          <Declarations>
            <Literal>
              <ID>type</ID>
              <ToolTip>Property type</ToolTip>
              <Default>int</Default>
            </Literal>
            <Literal>
              <ID>property</ID>
              <ToolTip>Property name</ToolTip>
              <Default>MyProperty</Default>
            </Literal>
            <Literal>
              <ID>field</ID>
              <ToolTip>The variable backing this property</ToolTip>
              <Default>myVar</Default>
            </Literal>
          </Declarations>
          <Code Language="csharp">
            <![CDATA[private $type$ $field$;

 public $type$ $property$ {
    get
    {
        return $field$;
    }
    set
    {
        $field$ = value;
        NotifyPropertyChanged("$property$");
    }
}
$end$]]></Code>
        </Snippet>
    </CodeSnippet>
</CodeSnippets>