标签: c# visual-studio refactoring resharper
我有这样的代码,其中try语句没有意义(在我看来)。如何通过一个动作通过Re#删除这样的try语句?一个操作意味着键快捷键或单击Re#中的某个选项。
try { obj.Prop = "sth"; obj.PropInt = 12*94; } catch(Exception ex) // catch is empty { }