T O P I C R E V I E W |
derhexer |
Posted - May 10 2015 : 11:14:21 AM Hi,
is there any way to change a member of a class like:
public String _Name; into
public String Name; with automatically changing the whole class code from _Name to this.Name?
Thx a lot derhexer
|
2 L A T E S T R E P L I E S (Newest First) |
derhexer |
Posted - May 12 2015 : 01:00:38 AM Hi accord,
why is it so easy?! I'm so stupid...
Thx a lot derhexer |
accord |
Posted - May 11 2015 : 08:11:46 AM quote: with automatically changing the whole class code from _Name to this.Name?
Do you mean to change every reference to this.Name?
If so, you can do this easily with a little trick. First, rename the variable from _Name to this.Name using VA Rename. After that, just delete the "this." part from the declaration line. |
|
|