Visual Studio代码片段额外的行

时间:2015-10-23 07:58:46

标签: visual-studio visual-studio-2015 code-snippets

我在Visual Studio(Community 2015)中使用代码片段来自动化行Debug.LogFormat("");。该代码段正在运行,但它在开头添加了一个额外的空行(输入),因此使用带有log 标签 标签的代码段将生成以下代码:

// blank line
Debug.LogFormat("");

而不是

Debug.LogFormat("");

以下是我使用的代码段的XML:

<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets
    xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
    <CodeSnippet Format="1.0.0">
        <Header>
            <Title>Unity LogFormat</Title>
            <Author>Faas</Author>
            <Shortcut>log</Shortcut>
            <SnippetTypes>
                <SnippetType>Expansion</SnippetType>
            </SnippetTypes>  
        </Header>
        <Snippet>
            <Declarations>
                <Literal>
                    <ID>Message</ID>
                    <ToolTip>Message</ToolTip>
                    <Default></Default>
                </Literal>           
            </Declarations>
            <Code Language="CSharp"><![CDATA[Debug.LogFormat("$Message$");]]>
            </Code>
        </Snippet>
    </CodeSnippet>
</CodeSnippets>

1 个答案:

答案 0 :(得分:8)

我可以通过在$end$元素中放置Code来解决问题。我不知道根本原因。试一试。

<Code Language="csharp"><![CDATA[Debug.LogFormat("$Message$");$end$]]>

查看有关Code元素here的更多文档。