What happend to my Intellisense??
When I type a line like this ...
Dim users = (From u In Membership.GetAllUsers Select u.UserName)
... I get (almost) no Intellisense when I get to the Select u.
part. Only Equals, GetHashCode, GetType, ReferenceEquals and ToString appears. Not "UserName" and the other relevant propeties of the MembershipUser class.
The code compiles and works just fine.
Any suggestions?
I tried devenv.exe /ResetSettings
from the VS Command prompt as suggested in this question, but it didn't help.