Given the following abstract
class:
public abstract class AbstractTest
{
protected abstract void B();
protected abstract void Aa();
protected abstract void Ab();
protected abstract void C();
}
In Visual Studio Code, if I select "Implement Abstract Class":
The methods are automatically generated by ascending, alphabetic order:
Does there exist a setting in VS Code that allows me to retain the order of the methods, in the order which I had originally defined them in?