Anders Den
Anders Den

Reputation: 73

Why is intellisense in visual studio not showing method overloads any longer?

Does anyone know why my Visual Studio has suddenly stopped allowing me to select between different method overloads via intellisense? Instead it just seems to let me choose between a lot of different unrelated classes.

I can still select if I click the arrows though.

See example here:

Upvotes: 3

Views: 1128

Answers (2)

Samuel Kazan
Samuel Kazan

Reputation: 49

I found it annoying to have both the popup methods suggestions & method overloads; I cannot use the up & down arrows to see the different overloads.

Solution: "Tools -> Options -> Text Editor -> (pick your language) -> Intellisence", then uncheck "Automatically show completion list in argument lists".

Upvotes: 2

Sara Liu - MSFT
Sara Liu - MSFT

Reputation: 6218

Just as Tim said, to get what you want, you should first

invoke Ctrl+Shirt+Space and then use Up or Down of the Small keyboard to get the display of the overloading methods.

enter image description here

Upvotes: 1

Related Questions