有沒有什麼東西可以扭轉「環繞」?在Visual Studio 2010 + Resharper中快速移除周圍的backet/parenthese/block? (反向環繞)
來源:
((Type)myobject);
要:
(Type)myobject;
來源:
if/while/try/using... {
lots of code here....
}
要:
lots of code here....
有沒有什麼東西可以扭轉「環繞」?在Visual Studio 2010 + Resharper中快速移除周圍的backet/parenthese/block? (反向環繞)
來源:
((Type)myobject);
要:
(Type)myobject;
來源:
if/while/try/using... {
lots of code here....
}
要:
lots of code here....
嘗試結構的搜索和替換(見JetBrains .NET tools blog,JetBrains TV得到進一步的指導)
爲了您的第一個例子,你可以用下面的一對圖案:
搜索模式:(($type$) $var$)
替換模式:($type$) $var$
其中$type$
是一個類型佔位符,並且$var$
是標識符佔位符。
玩了一下更具有結構性的搜索和替換,您可能希望從ReSharper的網站
使用下載sample SSR pattern catalog自定義更換圖案