dannie.f
dannie.f

Reputation: 2425

Visual Studio 2015 RC intellisense does not display parameter list

I have been using Visual Studio 2015 since CTP 6 and I have noticed that the IDE does not show the parameter list when I type the opening parenthesis "(".

This is what I am expecting to see:

enter image description here

In the screenshot above you see the the Create method has two overloads and this displays when I type the open parenthesis. But in Visual Studio CTP 6 and RC, nothing happens. I cannot see the overloads or the parameter list.

Is this a bug? Is there anyway to fix this issue?

Upvotes: 13

Views: 4652

Answers (5)

Karen Slon
Karen Slon

Reputation: 233

I had to go to suggested Go to Tools, Options, Text Editor, All Languages, General - and UN-check "Hide advanced members" check box under checked-on "Auto List Members." Then when I would type ( after class name it would show me all possible signatures in Intellisense. Hope it helps some.

Upvotes: 0

Anatolii Humennyi
Anatolii Humennyi

Reputation: 1856

In my case it was just a bug. I restarted Visual Studio and the issue disappeared.

Upvotes: 1

Steve Gray
Steve Gray

Reputation: 107

If you hover over the Method name, you get a tool tip with the method parameters. Maybe they thought this better?

Upvotes: 0

Anthony Sneed
Anthony Sneed

Reputation: 713

Here's the answer: Go to Tools, Options, Text Editor, All Languages, General. Then check the following options (override 'mixed' check): - Auto list members - Parameter information

Upvotes: 22

haku
haku

Reputation: 4505

I believe the shortcut for parameter info is ctrl + shift + space by default and in VS2015 RC it is working fine for me. May be it could be some user settings that might be overwriting default. You could see what the shortcut is by going at Menu.Edit.IntelliSense.

Upvotes: 0

Related Questions