AlmostBearded
AlmostBearded

Reputation: 313

List Overridable Methods in Visual Studio Code (C#)

I recently switched to Visual Studio Code and there's one feature so far that I have been dearly missing and that is the ability to autocomplete overridable methods.

In the full Visual Studio versions you were able to type override and the IDE would list all the methods of the current class that were marked abstract or virtual in any of the parent classes. This feature seems to be missing from Visual Studio Code. Is there a setting that could be tweaked or does anybody know about an extension that would add this kinda feature?

Upvotes: 3

Views: 5129

Answers (1)

KHL
KHL

Reputation: 475

You have type the first character of the override method.It just doesn't trigger on SPACE.

Upvotes: 7

Related Questions