Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
R# 5.1.1751.8
当我执行模式搜索...
catch (Exception e) {}
...我看到了一个错误对话框,上面写着“无法解析模式”。
那个模式无法解析怎么办?我究竟做错了什么?
我向 JetBrains 支持部门发送了电子邮件,得到了以下回复:
ReSharper 无法仅解析 C# 语言结构的一部分。在这种情况下,“catch(Exception e){}”是 try/catch 结构的一部分。以下将搜索空的 catch 子句:
try { $stmt$ } catch(Exception e) { }
(其中 $stmt$ 是“一个或多个语句”)。