由于我定义了以下代码段,因此在尝试使用Surround with时总是得到不必要的选择。
<CodeSnippet Format="1.0.0">
<Header>
<Title>Dependency Properties region</Title>
<Shortcut>#regiondp</Shortcut>
<Description>
Umschliesst die Selektion mit einer region namens Dependency Properties
</Description>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Code Language="csharp" Kind="method decl">
<![CDATA[
#region Dependency Properties
$selected$
#endregion
]]>
</Code>
</Snippet>
在C#文件中使用“带有...的环绕声”时,VS2010为什么现在问我是否要使用“ C#代码段”或“ Visual C#”代码段?
最佳答案
之所以问您,是因为您有自己的代码段以及Visual Studio安装随附的MS的预安装代码段。
如果您不满意,可以将代码段放在以下位置:
%ProgramFiles(x86)%\ Microsoft Visual Studio 10.0 \ VC#\ Snippets \ 1033 \ Visual C#
其中包括MS的所有摘要。
高温超导
关于c# - VS2012的SurroundsWith Snippet提供了选择,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11537507/