Last active
July 9, 2021 11:07
-
-
Save chaosifier/c652924193014c63e8ed4777bf9224ed to your computer and use it in GitHub Desktop.
Visual Studio C# Code snippet for observable property and backing field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <Title>propref</Title> | |
| <Shortcut>propref</Shortcut> | |
| <Description>Code snippet for observable property and backing field</Description> | |
| <Author>Sagar Dahal</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[private $type$ $field$; | |
| public $type$ $property$ | |
| { | |
| get { return $field$;} | |
| set { SetProperty(ref $field$, value); } | |
| } | |
| $end$]]> | |
| </Code> | |
| </Snippet> | |
| </CodeSnippet> | |
| </CodeSnippets> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment