I have developed an application in VS2012 Visual Basic.NET that has over 5000 lines of code. Originally, each public method/sub was stored in a module. Since then, I have changed the module to be a class.
Now that it is a class, every call to the methods needs to be changed.
For example:
testFunction(10);
Needs to now be written as ClassMediaPlayer.Class.testFunction(10);
Every line of code needs to be rewritten as such. At the moment, I am manually going through all the code to do this. This action is very tedious.
My question is this: Is there an automated way to change all these method/sub calls? Or should I do it all manually?
Now that it is a class, every call to the methods needs to be changed.
For example:
testFunction(10);
Needs to now be written as ClassMediaPlayer.Class.testFunction(10);
Every line of code needs to be rewritten as such. At the moment, I am manually going through all the code to do this. This action is very tedious.
My question is this: Is there an automated way to change all these method/sub calls? Or should I do it all manually?