I want to substitute lot's of different lines in a decompiled project:
get_Method();
set_Method(value);
This is how the code i'm working on refers to methods with get and set attributes So I should change all of this call to
Method;
Method = value;
But it's impossible to change manually every line of this kind... I think it's likely to change them all at once using the regular expressions, but I really don't know how to do it, I tried a lot and i'm just messing things up
Can someone give me an example of regular expression that can help me change every .get_Method()
into .Method
and every set_Method(
into .Method = (
?