Am I right in saying there is no Intellisense for C# 4 named parameters in Visual Studio 2010.

For example if I have the following method signature:

public static List<Person> GetPerson(string personId = null, string postCode = null, string lastName = null)

I would have thought I'd get Intellisense as I typed in the parameter names in the method call.

List<Person> people = GetPersons(personId : "abc", [Intellisense appear as I type p..] 

Or is this not possible because Intellisense would get in the way if you were specifying parameters by position?

link|improve this question

44% accept rate
1  
I get Intellisense for those. – Gabe Feb 14 '11 at 16:37
1  
They show up for me. – asawyer Feb 14 '11 at 16:38
They show up for me... but I use ReSharper. – StriplingWarrior Feb 14 '11 at 16:45
feedback

2 Answers

up vote 1 down vote accepted

Something might have messed with your intellisence settings, see this post:

http://blog.meidianto.com/2010/05/10/vs2010-tips-5-no-intellisense-in-visual-studio-2010-fix-it-now/

If your problems persist, attempt a repair or reinstall of Visual Studio.

link|improve this answer
Thanks Nathan. That did it. – FloatLeft Feb 16 '11 at 15:46
feedback

No you are not right....I dont know what are you saying but they did show up for me.

enter image description here

link|improve this answer
Shall I insert a screenshot? – Ani Feb 14 '11 at 16:41
yeah sure, why not... – Shekhar_Pro Feb 14 '11 at 16:42
@Ani thanx for Pic.... – Shekhar_Pro Feb 14 '11 at 17:01
OK, thanks. Not sure why I'm not seeing the Intellisense. – FloatLeft Feb 15 '11 at 9:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.