Created
May 21, 2022 19:14
-
-
Save aadipoddar/c3a33a0a380306fae386b8b3c313c7d3 to your computer and use it in GitHub Desktop.
Custom Propfull Snippet, Visual Studio
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>Custom PropFull</Title> | |
<Shortcut>pprop</Shortcut> | |
<Description>Custom Code snippet for property and backing field</Description> | |
<Author>Aadi Poddar</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 => $field$; | |
set | |
{ | |
if ($field$ != value) | |
{ | |
$field$ = value; | |
OnPropertyChanged(nameof($property$)); | |
} | |
} | |
} | |
$end$]]> | |
</Code> | |
</Snippet> | |
</CodeSnippet> | |
</CodeSnippets> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment