プロパティを作成する次のスタイルに落ち着きました(バッキングフィールドを使用):
private _firstName;
public string FirstName
{
get { return _firstName; }
set { _firstName = value; }
}
プロパティの名前がバッキング フィールドの名前に似ていることを考慮して、組み込みのprop
スニペットを次のように改善しました。
<?xml version="1.0"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>prop</Title>
<Author>Frank Rizzo</Author>
<Description>Code snippet for property and backing field - changed one (not the original).</Description>
<Shortcut>prop</Shortcut>
<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$ $field$
{
get { return _$field$;}
set { _$field$ = value;}
}
$end$
]]></Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
これはある程度機能しますが、バッキング フィールドとプロパティ名の大文字と小文字は常に同じです。私の慣例では、バッキング フィールドはキャメル ケースで、プロパティ名はパスカル ケースです。
私の質問はこれです: スニペットの構文には、プロパティの最初の文字を変更する方法がありますか?