如何在 ReSharper 中关闭 try/catch 块代码完成?
当我开始输入 try/catch 块时,ReSharper 会将其从 展开为
try {
我
try
{
}
catch(Exception)
{
}
感谢 ReSharper 试图帮我一个忙,但这是我更愿意自己做的情况之一,因为我经常这样做稍后返回并添加 try
块,或者键入不带 catch
子句的 try
/finally
块。
在 ReSharper 中哪里可以关闭此行为?
When I start typing a try/catch block, ReSharper causes it to be expanded from
try {
to
try
{
}
catch(Exception)
{
}
I appreciate ReSharper trying to do me a favour, but this is one of those instances where I'd prefer to do it myself seeing as I'm often going back and adding the try
block later, or typing a try
/finally
block without a catch
clause.
Where do I turn off this behaviour in ReSharper?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ReSharper 菜单/
预定义模板下的实时模板/C#/导入的 Visual C# 片段
取消选中 try 和 tryf。
ReSharper menu / Live Templates
Under Predefined Templates / C# / Imported Visual C# Snippets
Uncheck try and tryf.