作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我们使用 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/
我是一名优秀的程序员,十分优秀!