Reputation: 73
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.
Upvotes: 3
Views: 1128
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
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.
Upvotes: 1