我想知道是否有办法制作#region Some Region #endregion Some Region
。
如果没有办法做到这一点那么Resharper也许可能吗?
希望很明显我在这里想要实现的目标。
修改
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>#region</Title>
<Shortcut>#region</Shortcut>
<Description>Code snippet for #region</Description>
<Author>Microsoft Corporation</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>name</ID>
<ToolTip>Region name</ToolTip>
<Default>MyRegion</Default>
</Literal>
</Declarations>
<Code Language="csharp"><![CDATA[#region $name$
$selected$ $end$
#endregion $name$]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
第二次修改 这是有效的,但只有当我制作插入片段时。从intellisense这使用其他一些片段我猜。
那么有没有办法从intellisense添加我的区域而不是插入片段菜单?
答案 0 :(得分:11)
如果你想要实现的目标是......
#region MyRegion
//...lots of code...
#endregion // end of MyRegion
您可以使用所谓的“SurroundsWith”片段来完成此操作。这是我图书馆的一个片段......
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippet Format="1.0.0"
xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<Header>
<Title>Enregions a block of code</Title>
<Author>GJV</Author>
<Shortcut>enr</Shortcut>
<Description>Surrounds a block of code with region directives</Description>
<SnippetTypes>
<SnippetType>SurroundsWith</SnippetType>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal Editable="True">
<ID>RegionName</ID>
<ToolTip>Region Name</ToolTip>
<Default>MyRegion</Default>
</Literal>
</Declarations>
<Code Language="CSharp">
<![CDATA[
#region $RegionName$
$end$
$selected$
#endregion // end of $RegionName$
]]>
</Code>
</Snippet>
</CodeSnippet>
要在Visual Studio中使用它,请将代码段放在.snippet文件中并将其保存在snippets目录中,然后转到Tools =&gt; Code Snippets Manager =&gt;加。添加后,您可以使用标准的CTRK K + X来访问它。
这使您可以通过内置的区域片段灵活地添加尾随注释以指示区域的结束。您还可以通过添加其他扩展来进一步自定义。
注意:sentinal $ end $标记操作完成时光标要落在哪里。
答案 1 :(得分:5)
Visual Studio 2017
键入 #r TAB TAB ,然后键入区域的名称。
这是内置行为。
答案 2 :(得分:1)
您可以将#region的ReSharper默认模板更改为:
#region $name$
$END$
#endregion $name$
<强>更新强>
奇怪,但是如果你更改默认的#region模板,那么什么都不行。您需要定义自己的模板,为其设置一个片段(即reg)并将上面写的代码放入其中。
答案 3 :(得分:1)
我建议VSCommands。
查看部分&#34;代码块结束标记改进&#34;
编辑25.08.2014
它将放置代码块的开头(方法名称为aso。) 作为代码块末尾的浅灰色超链接。作为超链接,因为它是可点击的,您可以导航到代码块的开头。
答案 4 :(得分:1)
Visual Studio的内置版本为 Ctrl K + X
答案 5 :(得分:0)
按Control + K,S并选择Region
答案 6 :(得分:-2)
你不需要。
你可以这样做:
#region Some Region
//I
//am
//assuming
//a
//lot
//of
//code
//you
//want
//to
//hide
//goes
//here
//here
#endregion
//note that it doesn't say Some Region in the endregion