intellisense

How to use intellisense.js file that came with jQuery NuGet package 1.8.0 instead of vsdoc.js?

混江龙づ霸主 提交于 2019-11-30 12:16:31
问题 I just found that the lastest version (1.8.0) of jQuery NuGet package include the new type of vsdoc file that I cannot find any documentation. The intellisense file just only include xml comment-based document of jQuery library. I don't sure how to use this file. Do you have any idea or document about this? I use VS2012 for this project. 回答1: In JavaScript file, the JavaScript language service provides IntelliSense features for third-party JavaScript libraries that are added to a project. For

Where do Visual Studio Intellisense comments come from?

天涯浪子 提交于 2019-11-30 11:37:41
Visual Studio projects have an option to create XML Documentation Files . I understand that XML Documentation Files can be useful if you'd like to run a program like Sandcastle or NDoc or whatever to create MSDN-Style API docs. Fine. I don't care about that. According to this link: http://msdn.microsoft.com/en-us/library/s0we08bk.aspx When you add the /doc switch to the Visual Basic, C#, or C++ compiler command line, an .xml file is generated that serves as the basis for IntelliSense documentation. So that makes me think that Intellisense comments can appear from these generated XML files. But

How do I create an XML Intellisense file for my DLL?

杀马特。学长 韩版系。学妹 提交于 2019-11-30 11:22:02
I am creating a DLL in C#, using VS 2010, and I have created XML comments for all of its members. When I build the DLL, how do I generate the XML file that will provide Intellisense for the DLL? Thanks for your help. In the project properties page, go to the Build tab. In the Output section near the bottom there's a check-box labelled "XML documentation file" that needs to be checked. 来源: https://stackoverflow.com/questions/4893745/how-do-i-create-an-xml-intellisense-file-for-my-dll

Visual Studio 2010 IntelliSense doesn't select a default value - it just marks it

人盡茶涼 提交于 2019-11-30 10:05:39
问题 I have a pretty annoying problem with the IntelliSense in Visual Studio 2010: Every now and then (but not always - just out of my control) the Intellisense engine chooses to "mark" an option, instead of actually selecting it. This means that instead of typing e n Enter to access the default option starting with "En...", I have to type e n down Enter . Usually it works like this for a while, and then, suddenly, the behavior I want is back. My conclusion is that there is some option somewhere

How to get full intellisense tooltip comments working?

拜拜、爱过 提交于 2019-11-30 10:02:00
I've got some C++/CLI software which is all nice and documented in a C#'ish kind of way which means DOxygen is able to pull it out into some nice html. Is there any way I can get that same information to appear in the intellisense tool tips the way that the .net framework does? For example, lets say this is my header file (MyApp.h): /*************** MyApp.h ***************/ /// My namespace containing all my funky classes namespace MyNamespace { using namespace System; ref class WorldHunger; /// A truly elegent class which solves all the worlds problems public ref class MyClass { public: ///

Is there a way to change the order of constructors listed in IntelliSense in Visual Studio?

你说的曾经没有我的故事 提交于 2019-11-30 09:10:15
问题 I have defined a class with multiple constructors so that the underlying interfaces are immutable once the object is instantiated. I would like one of the constructors to be the "default" constructor for when a user types the following in Visual Studio: var obj = new MyClass( Dim obj As New MyClass( Currently when I go to instantiate the object, the constructors aren't listed (in Visual Studio IntelliSense) in the order I declared them in my class. Is there a way to mark up my constructors so

Enabling jQuery Intellisense inside JavaScript file in Webmatrix

牧云@^-^@ 提交于 2019-11-30 08:50:48
问题 I have done the following in WebMatrix. I imported jQuery inside my HTML page with documentation of jQuery and successfully enabled jQuery intellisense inside the HTML script tag. <script type="text/javascript" src="JS/jquery-2.1.0.js" ></script> <script type="text/javascript" src="JS/jquery-2.1.0-vsdoc.js" ></script> Now I want to enable jQuery intellisense inside my external JavaScript file,How would it work? 回答1: Usually, in Visual Studio you can use reference directive in the beginning of

Delphi code completion performance [closed]

旧时模样 提交于 2019-11-30 08:11:02
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 can be a full minute, or more. Other times, it pops up immediately with suggestions. What factors influence the performance of intellisense in Delphi? Is there any way I can improve this performance? My best solution so far is to turn off the automatic completion, and use ctrl+space when I need to meditate quietly for

SQL Server Management Studio 2008 Intellisense

吃可爱长大的小学妹 提交于 2019-11-30 08:00:11
I just installed SQL Server Express 2008 because of intellisense feature. It worked at first but than it stopped working. Looking for the option to check and later consulting Google I have found that it looks like Microsoft disabled intellisense if you connect to SQL Server 2005 databases. Is this absolutely correct ? Is there any solution for this (some registry "switch") ? If you'd like to see the feature added, vote for the request on Connect . Here is feedback from the team regarding why it was dropped: Let me share product team’s information about the version support of IntelliSense. This

Hiding namespaces containing only internal types in a class library?

别等时光非礼了梦想. 提交于 2019-11-30 07:49:21
I have a class library that has a couple of namespaces containing only internal types. However, when using the class library in an application project, the namespaces shows up in intellisense, but of course they are empty. Is there any way for me to hide the namespaces completely when using intellisense in other projects? I've tried to apply EditorBrowsableAttribute to all the internal classes as well, but what I'd like to do would be to apply that to the namespace, which is of course impossible. Or is, if I care enough about this, the only option I have to just move the types into a namespace