I’m quite busy with a project I’m on with Clemens(the last time before he’ll join the Indigo team at Microsoft) - just to explain why it got bit quiet around me :-)

Here is a modified version of the prop snippet that I want to share (and remember :-P).

<?xml version="1.0" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>prop</Title>
      <Shortcut>prop</Shortcut>
      <Description>Code snippet for property and backing field</Description>
      <Author>Microsoft Corporation</Author>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
    </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[#region $property$
      // This field holds the $property$
      private $type$ $field$;
      /// <summary>Gets/sets the $property$.</summary>
      /// <value>A <see cref="$type$">$type$</see>
      /// containing the $property$.</value>
      /// <remarks>This property gets/sets the $property$.</remarks>
      [System.ComponentModel.Description("Gets/sets the $property$.")]
      public $type$ $property$
      {
            get { return $field$;}
            set { $field$ = value;}
      }
      #endregion
      $end$]]>
      </Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>