vb.net – 扩展多行代码段在底部添加了额外的行

前端之家收集整理的这篇文章主要介绍了vb.net – 扩展多行代码段在底部添加了额外的行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有什么办法可以防止在VB.NET中的多行代码段下添加多条线?

(点击标签键展开片段…)

我已经仔细检查了代码段本身没有一个额外的行.此外,这似乎是VB特定的.

<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>trycatchex</Title>
<Shortcut>trycatchex</Shortcut>
<Description>Code snippet for try catch</Description>
<Author>Microsoft Corporation</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>expression</ID>
<ToolTip>Exception type</ToolTip>
<Function>SimpleTypeName(global::System.Exception)</Function>
</Literal>
</Declarations>
<Code Language="VB">
<![CDATA[Try
catch ex As Exception
End Try
End Sub]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
原文链接:https://www.f2er.com/vb/255572.html

猜你在找的VB相关文章