当我们使用prop快捷方式生成属性时,它会将其生成为int。 但是,在大多数情况下,我使用字符串属性。有什么办法可以更改此快捷方式的默认行为来生成字符串属性吗?
答案 0 :(得分:7)
我为自定义行为编写了自己的代码片段。像props
一样用于字符串等。
如果在Visual Studio中打开Code Snippet Manager
,它将显示代码段文件的位置,该文件是可编辑的。如果您正在使用VS,则位置因版本而异。
在VS2013上,它显示了prop
对于c#
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC#\Snippets\1033\Visual C#/prop.snippet
然后我可以打开文本编辑器并根据需要自定义文件。
<?xml version="1.0" encoding="utf-8" ?>
<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 an automatically implemented property
Language Version: C# 3.0 or higher</Description>
<Author>Microsoft Corporation</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>type</ID>
<ToolTip>Property type</ToolTip>
<Default>string</Default>
</Literal>
<Literal>
<ID>property</ID>
<ToolTip>Property name</ToolTip>
<Default>MyProperty</Default>
</Literal>
</Declarations>
<Code Language="csharp"><![CDATA[public $type$ $property$ { get; set; }$end$]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
请注意上述内容如何更改为string
默认类型