intellisense

Disable Intellisense in XAML Editor in VS2008?

时光总嘲笑我的痴心妄想 提交于 2019-12-23 09:07:33
问题 Is there a way to disable Intellisense in the XAML editor in Visual Studio 2008? It is often a big performance drain while typing, and sometimes I'll sit for ten or more seconds waiting while the list automatically popups up. It appears that in Options->Text Editors->XAML, the Intellisense section is section is unavailable (grayed out). We open documents in Full XAML View, and don't use any third party enhancements. It's so bad that sometimes I'll just open the file elsewhere and edit what I

Undocumented overload of string.Split()?

自闭症网瘾萝莉.ら 提交于 2019-12-23 08:57:38
问题 According to both Intellisense and MSDN doc on string.Split, there are no parameterless overloads of string.Split. Yet if I type in string[] foo = bar.Split(); It compiles. And it works. I have verified this in both Visual Studio 2008 and 2010. In both cases intellisense does not show the parameterless overload. Is there a reason for this? Are there any other missing overloads from the MSDN/Intellisense docs? Usually browsing through overloads in intellisense is how I best determine which

How do you see which exceptions are thrown with Intellisense in VS2015?

牧云@^-^@ 提交于 2019-12-23 07:38:08
问题 This was addressed and fixed in VS2015 Update 1 Is there any way to show the Exceptions in VS2015? VS2015 VS2013 回答1: It no longer appears to show up in the intellisense tooltip until you actually write the code. Once the code is there hovering your mouse over it makes it appear in full. Note: This appears to have only been fixed in Visual Studio 2015 Update 1 来源: https://stackoverflow.com/questions/31590390/how-do-you-see-which-exceptions-are-thrown-with-intellisense-in-vs2015

SSMS 2012 Intellisense Behavior

佐手、 提交于 2019-12-23 07:03:33
问题 It seems like the behavior of intellisense has been changed in SSMS 2012 so that it does not behave the same as Visual Studio or SSMS 2008. Previously I would always hit SPACE, and that would insert the current highlighted word from intellisense. But in SSMS 2012 I have to hit TAB or hit DOWN ARROW then SPACE Here is what SSMS 2012 looks like as I'm typing a query If I hit space then this happens: In SSMS 2008 it looks differently And in visual studio In both of those simply hitting SPACE

visual studio parameter listing intellisense

。_饼干妹妹 提交于 2019-12-23 07:02:11
问题 Intellisense typically pops up when I open the '(' on a function call showing the data types of the parameters matched, allowing you to hit up or down to see all possibilities of overloaded function calls. Is there a keyboard shortcut to force this to happen if I move cursor focus outside the function call and want to see it again? 回答1: Ctrl + Shift + Space shows the parameter information.. Obtained from Whats the default intellisense shortcut in vs2008? reposted by Rahul 回答2: Go to tools-

visual studio parameter listing intellisense

大城市里の小女人 提交于 2019-12-23 07:02:04
问题 Intellisense typically pops up when I open the '(' on a function call showing the data types of the parameters matched, allowing you to hit up or down to see all possibilities of overloaded function calls. Is there a keyboard shortcut to force this to happen if I move cursor focus outside the function call and want to see it again? 回答1: Ctrl + Shift + Space shows the parameter information.. Obtained from Whats the default intellisense shortcut in vs2008? reposted by Rahul 回答2: Go to tools-

Visual Studio 2013 VB intellisense

 ̄綄美尐妖づ 提交于 2019-12-23 06:56:44
问题 Apologies upfront if this is a silly question, but it's annoying me to no end and I can't figure it out. I'm using Visual Studio 2013 Professional, and I usually code in C# where when using the Intellisense, when I press Enter to select a method or something it adds my selection and I can continue typing on the same line. But at the moment I'm working on a project which is in VB.NET, and when I use the Intellisense in the same way it puts my cursor in the next line, i.e. I press Enter to

Is there any way to increase code intellisense height in Visual Studio?

倾然丶 夕夏残阳落幕 提交于 2019-12-23 02:54:10
问题 Is there any way to increase code intellisense height on ASP.NET? 回答1: The intellisense pop-up window is resizable. It will let you increase the vertical height to display a maximum of 16 suggestions (and a minimum of 5). Once the pop-up is visible, hover your mouse over the bottom right corner and you will see the arrow cursor that indicates that you can click and drag to adjust the size of the pop-up. 回答2: When the intellisense box is displayed, you can use your mouse to resize the box to

c# Intellisense VS2013 tooltip doesn't show XML comments (i try all)

只愿长相守 提交于 2019-12-23 02:35:03
问题 I read all questions about intellisense problems but my intellisense doesn't work. Visual Studio Ultimate 2013 I don't use any extension like Resharper, ghostdoc and so on All XML documentation files about custom and not custom classes are inside starter project's /bin folder . ( Build -> generate XML doc is ON ) I have all documentations browsable via Object Browsers Intellisense doesn't show tooltip information about . NET classes /EF/Identity too Intellisense shows tooltip information only

Auto complete stops working on Node.js projects

拜拜、爱过 提交于 2019-12-22 12:23:09
问题 I have encountered an annoying bug which intellisense doesn't show me code completions whenever I type characters. intellisense will only show code completions when I use the key shortcut ctrl + space . But when I am working on a different type of javascript project, auto completion works fine. Auto completion doesn't work even though statements completion is enable in: Options>Text Editor>All languages>Auto list members + Parameter information Options>Text Editor>Javascript>Auto list members