-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
For example, let's say we have code like this:
public abstract class ClassA
{
public abstract void MyMethod();
}
public class ClassB : ClassA
{
// if you try to type this, you'll get no autocompletion for the keyword itself
override // ...
// if you try to autocomplete the function name it won't autocomplete it
override MyMe // ...
// it'll only autocomplete the name if you do
override public void MyMe // ...
// the order of override doesn't matter, but it should change the order to "public override" or something similar, such as:
public override void MyMethod()
{
}
}This behavior I'm describing is present in vscode. (through the C# extension)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels