Skip to content
Advertisement

How can I change order of arguments in vscode?

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

Advertisement

Answer

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement