6

我在 c# 中创建了一个简单的代码片段,其中添加了该行

Debug.WriteLine("");

现在下一步是,当您使用代码段时,自动创建

using System.Diagnostic;

有没有办法自动创建参考?我尝试以这种方式设置片段引用和导入元素:

<Snippet>
  <References>
    <Reference>
      <Assembly>System.dll</Assembly>
    </Reference>
  </References>
  <Imports>
    <Import>
      <Namespace>System.Diagnostic</Namespace>
    </Import>
  </Imports>
      .
      .
      .
</Snippet>

但它不起作用

4

4 回答 4

1

不幸的是,Import仅适用于 VB 项目。它在MSDN上进行了解释。

于 2013-07-01T16:03:46.837 回答
1

游戏有点晚了,但这确实适用于 C# :)

<References>
    <Reference>
        <Assembly>System.dll</Assembly>
    </Reference>
</References>
<Imports>
    <Import>
       <Namespace>System.Diagnostic</Namespace>
    </Import>
</Imports>

将它们放在该<Snippet>部分内。文档甚至提到(这也适用于 C#。)

https://docs.microsoft.com/en-us/visualstudio/ide/walkthrough-creating-a-code-snippet?view=vs-2017#add-references-and-imports

PS:如果要添加多个导入,请执行以下操作:

<Imports>
    <Import>
        <Namespace>System.Diagnostic</Namespace>
    </Import>
    <Import>
        <Namespace>System.Reflection</Namespace>
    </Import>
</Imports>
于 2018-12-03T00:04:53.360 回答
0

我查看了 microsoft 创建的 mbox 片段,并得出以下结论:

<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
   <CodeSnippet Format="1.0.0">
     <Header>
       <Title>dw</Title>
       <Shortcut>dw</Shortcut>
       <Description>Code snippet for System.Diagnostics.Debug.WriteLine</Description>
       <Author>MisaThinksMeDidIt</Author>
       <SnippetTypes>
         <SnippetType>Expansion</SnippetType>
       </SnippetTypes>         
     </Header>
     <Snippet>    
       <Declarations>
         <Literal>
            <ID>string</ID>
            <ToolTip>String to display</ToolTip>
            <Default>"Test"</Default>
         </Literal>
         <Literal Editable="false">
           <ID>SystemDiagnosticsDebugWriteLine</ID>
           <Function>SimpleTypeName(global::System.Diagnostics.Debug)</Function>
         </Literal>
       </Declarations>
       <Code Language="csharp"><![CDATA[$SystemDiagnosticsDebugWriteLine$.WriteLine($string$);$end$]]></Code>
     </Snippet>
  </CodeSnippet>
</CodeSnippets>
于 2013-07-19T14:28:50.590 回答
0
System.Diagnostics.Debug.WriteLine("");

您可以在代码段中使用完全限定名称,而不是插入引用。

于 2013-07-01T17:06:39.540 回答