ReSharper 搜索模式:“无法解析模式”

发布于 2024-09-24 17:07:03 字数 153 浏览 2 评论 0原文

R# 5.1.1751.8

当我对...执行模式搜索时

catch (Exception e) {}

,我会看到一个错误对话框,其中显示“无法解析模式”。

无法解析该模式怎么办?我做错了什么?

R# 5.1.1751.8

When I perform a pattern search for...

catch (Exception e) {}

...I'm shown an error dialog which says "Can not parse pattern".

What about that pattern cannot be parsed? What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

在梵高的星空下 2024-10-01 17:07:03

我向 JetBrains 支持人员发送了电子邮件,得到了以下回复:

ReSharper 无法仅解析 C# 语言构造的一部分。在本例中,“catch(Exception e){}”是 try/catch 构造的一部分。以下将搜索空的 catch 子句:(

try {
    $stmt$
}
catch(Exception e)
{
}

其中 $stmt$ 是“一个或多个语句”)。

I emailed JetBrains support and got the following response:

ReSharper cannot parse only part of a C# language construct. In this case, 'catch(Exception e){}' is part of a try/catch construct. The following will search for empty catch clauses:

try {
    $stmt$
}
catch(Exception e)
{
}

( where $stmt$ is "one or more statements" ).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文