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