如何在Visual Studio中更改道具快捷方式的默认行为

时间:2018-02-04 00:00:55

标签: c# visual-studio

当我们使用prop快捷方式生成属性时,它会将其生成为int。 但是,在大多数情况下,我使用字符串属性。有什么办法可以更改此快捷方式的默认行为来生成字符串属性吗?

1 个答案:

答案 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默认类型