intellisense

VS Intellisense: can you hide extension methods?

泪湿孤枕 提交于 2019-12-19 05:17:32
问题 By default Visual Studio displays all members and its extension methods for a type in intellisense. Sometimes I would like to hide the extension methods to make it easier to find the member I am actually looking for (especially when using Linq). Is there a shortcut or another way to display only the members of a type in intellisense? 回答1: Not that I'm aware of - but one thing you might want to do is get rid of the using directive for System.Linq . At that point the extension method won't be

Visual Studio 2012 asp net mvc 3 project razor view

烈酒焚心 提交于 2019-12-19 03:44:09
问题 I have problem with intellisense in my asp net mvc 3 project in new visual studio 2012 RC. If I open VS2010 SP1 asp net mvc project in VS2012, cshtml view like this one : @model Intranet.Web.ViewModels.Login.LoginVM @{ Model. // dynamic expression - This operation will be resolved at runtime } My configuration : Windows 8 x86(x64 fail too), VS 2012 and 2010SP1 installed. So, is this bug? Thanks 回答1: Add <add key="webpages:Version" value="1.0" /> to <appSettings> in Web.config. Otherwise,

Visual Studio 2015 jQuery intellisense not working

做~自己de王妃 提交于 2019-12-18 18:10:10
问题 So I created a Visual Studio 2015 empty ASP.net Core application and tried to add jQuery using bower, but it isn't picking up the intellisense for jQuery... It is showing a warning saying that "Intellisense was unable to determine an accurate completion list..." JavaScript intellisense is still working just not the usual intellisense I would get after typing $. I am using jquery 3.1.1 in bower set up and read that I need to downgrade. Is that still the case? 回答1: I'm using VS 2015 and MVC 5

JQuery 1.3.2 vsdoc does not produce Visual Studio intellisense

喜夏-厌秋 提交于 2019-12-18 17:16:33
问题 In past i have worked with JQuery 1.2 vsdoc file which generates intellisense for vs2008 sp1. I have recently downloaded latest version of JQuery 1.3.2 and JQuery 1.3.2 vsdoc file. When i tried to get intellisense for jquery in vs2008 - I am getting following error- Warning 1 Error updating JScript IntelliSense: C:\Documents and Settings\sonx3d\My Documents\Visual Studio 2008\Projects\WebApplication2\WebApplication2\jquery-1.3.2.js: Object doesn't support this property or method @ 2139:1 Can

Delphi code completion performance [closed]

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-18 12:46:16
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . I have a few large (~600k lines of code) Delphi projects. They include some custom components which our team has developed. Often, when I call up code completion with ctrl+space or just by pressing ".", the IDE locks up and thinks really hard for a long time. Sometimes the delay

Is there a way to get full IntelliSense for VBA in Access and Excel 2007?

回眸只為那壹抹淺笑 提交于 2019-12-18 11:33:22
问题 In VB.NET, the IntelliSense pops up as soon as you start typing which gives you a pretty full list of things you can use at that moment. The IntelliSense in VBA however, doesn't kick on for me until a period is put after the part you're using. For example, I go into the VBA editor in Excel 2007 and start typing the word " Range " but the IntelliSense doesn't come up until I type " Range. " after which it will give me a list of things I can use at that point. Is there any way to make

Visual Studio How to add Python module to Intellisense

℡╲_俬逩灬. 提交于 2019-12-18 04:32:29
问题 How do I add a custom python module to the Visual Studio IntelliSense code completion tool? Situation: I am working on a python module that references another module that I have saved in /myPython/foo.py. If I start to type foo.someDef I would like IntelliSense to recognize I am accessing that module and suggest a code completion. 回答1: Visual Studio's Intellisense will recognize custom Python modules after they have been properly placed in the "site-packages" folder under the "Lib" folder in

.Net Core tag helper intellisense and color coding not working

感情迁移 提交于 2019-12-18 03:57:14
问题 I am having issues with .NET core and tag helpers. The color coding and the intellisense are not displaying or being registered when I type in asp-for. I've tried creating a new solution in a separate instance, verified that the intellisense works, and then copied the project.json into the project that doesn't have working intellisense/color coding, and it doesn't fix the issue. Here is my project.json { "dependencies": { "Microsoft.NETCore.App": { "version": "1.0.0", "type": "platform" },

Visual Studio 2015 Intellisense not working

邮差的信 提交于 2019-12-18 01:56:35
问题 I have a fresh install of VS2015 on windows 8 and intellisense doesn't work at all (nothing!) in any environment. I also have VS2013 (with Resharper 8)on the same machine which works fine. Any ideas before I go through a re-install? 回答1: Probably the problem is with ReSharper, I'm running VS2013 and VS2015 on the same machine without any issues. I would try: In Visual Studio 2015, go to 'Tools | Options | Text Editor | C# | General both "Auto list members" and "Parameter information" should

Custom intellisense for server controls?

心不动则不痛 提交于 2019-12-17 21:07:37
问题 Can you program/configure Visual Studio to produce custom intellisense for your own server controls. eg can you get it to do this: alt text http://www.yart.com.au/test/vs.gif for a tag of your own like: <MyCompany:MyTag ... 回答1: You should be getting this for free (default behavior of control). Are the references all in place while you are typing the custom control? There is an attribute to hide properties from intellisense: [EditorBrowsableAttribute (EditorBrowsableState.Never)] Use the