Example, I created a method like that:
void method(String a, int b){
// do something
}
One day, how can I change order of argument like this if I had already use this method a lot in my project:
void method(int b, String a){
// do something
}
My IDE is vscode