2

由于我定义了以下代码段,因此在尝试使用环绕时总是会得到不需要的选择。

<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# 文件中使用“Surround with...”时,为什么 VS2010 现在询问我是要使用“C#Snippets”还是“Visual C#”片段?

4

1 回答 1

4

它之所以问你,是因为你有自己的代码片段和 Visual Studio 安装附带的 MS 预安装的代码片段。

如果它打扰您,您可以将您的代码片段放在以下位置:%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC#\Snippets\1033\Visual C#

在 MS 的所有片段中。
高温高压

于 2012-07-18T09:05:54.023 回答