gpt4 book ai didi

c# - 如何在 Visual Studio 中更改 Prop 快捷方式的默认行为

转载 作者:行者123 更新时间:2023-11-30 19:36:03 24 4
gpt4 key购买 nike

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

最佳答案

我为这样的自定义行为编写了自己的代码片段。像字符串等的 props

如果您在 Visual Studio 中打开 代码片段管理器,它将显示片段文件的位置,该文​​件是可编辑的。如果您使用的是 VS,该位置会因版本而异。

在 VS2013 上,它为 c# 显示了以下 prop 路径

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

关于c# - 如何在 Visual Studio 中更改 Prop 快捷方式的默认行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48603346/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com