Regex for Visual Studio Find Replace "Using" statement -


i following link: find , replace regular expression c#

in case, want replace following kind of code:

using(some code here) {   var result =  method call... return result; } 

to:

some code here var result =  method call... return result; 

so getting rid of using statement. or link start me with.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -