intellisense

Visual Studio 2015 Intellisense Keyboard Options

梦想与她 提交于 2019-12-20 03:26:18
问题 First, I'm asking this here, rather than on the Microsoft forums, because they're, well, you know what they are. I like the VS2015 Intellisense autocomplete features -- when I want them. But they've stupidly added the spacebar as a selection key. Even more stupidly, they've added the '.' the ':' and probably other boundary characters as selection keys, too. What this means, is I'm often typing happily along (and rather quickly), and whenever one of the "stupid" selection keys is pressed, I'm

Visual Studio 2015 RC3 TypeScript Intellisense not working anymore

谁说我不能喝 提交于 2019-12-20 02:59:12
问题 I'm using TypeScript 1.8.10 and TypeScript Tools for VS2015 1.8.1.0 Beta. Also, I'm using VS2015 RC3 I tried to upgrade to TypeScript 2.0, and I had the exact same issues, so I went back to TypeScript 1.8. I tried to repair VS2015, to change the tsconfig.json "target" and "module" options, to unload the whole project and setup the TypeScript options in the project file, tried to upgrade the TypeScript tools, and so on; but I still get these errors : My TypeScript files can't find the @angular

How can I prevent a public class that provides extension methods from appearing in Intellisense?

血红的双手。 提交于 2019-12-20 02:36:18
问题 Is there any way to 'hide' the name of a class, whose sole purpose is to provide extension methods, from Intellisense? I would like to remove the class name from the Intellisense list but need the extension methods of the class to be available to external assemblies via Intellisense in the usual way. 回答1: Ok, I have the answer to this. Hallgrim's suggestion of marking the class with.. [EditorBrowsable(EditorBrowsableState.Never)] ..does actually work but only where the assembly is being

XML documentation for interface methods and record properties

不羁的心 提交于 2019-12-20 02:26:08
问题 It seems the XML documentation works fine for the most cases, but not always. I wanted to make the Intellisense fully available for the parts that are designed for interoperating with C#. So, here's a small (and maybe a bit contrived) example: ///<summary>Well, it's a summary</summary> type Summary = { ///<summary>Gets a short name</summary> Name : string; ///<summary>Gets whether the action was successful or not</summary> IsSuccessful : bool; } ///<summary>Represents path filtering action<

Missing Intellisense While Describing Custom Control Properties Declaratively

时间秒杀一切 提交于 2019-12-20 01:07:40
问题 So, I've been working on this project for a few days now, and have been unable to resolve the issue of getting intellisense support for my custom-defined inner properties for a user control (ascx, mind you). I have seen the solution to this (using server controls, .cs mind you) many times. Spelled out in this article very well. Everything works for me while using ascx controls except intellisense. Here's the outline of my code: [PersistChildren(true)] [ParseChildren(typeof(BreadCrumbItem))]

Why might the Q_FOREACH macro break VS2010 intellisense?

心已入冬 提交于 2019-12-19 18:23:34
问题 I have a c++ project in VS2010 with Qt 4.7.4 and I frequently have problems with IntelliSense (as we all do...). A specific problem is that sometimes the function body (in the .cpp file) can't be found. If I click into that function body, the dropdown box (which usually shows the function you're in) is empty. Today I noticed this behavior right after I added a foreach() statement (the Qt macro Q_FOREACH). I then replaced the foreach() macro with a corresponding for(int i = 0; i < ...) and

Intellisense in vs2010 with c++

限于喜欢 提交于 2019-12-19 07:34:50
问题 I can't get intellisense to work. Even if I start with an empty project and add just one file to it with only an include for iostream and an int main() function that prints a char with cout (basically the most basic program), if I try to get intellisense to show anything (say by typing cout. ) I get IntelliSense: 'No additional information available' (See 'Troubleshooting IntelliSense in C++ Projects' for further help.) Hours of googling have yielded a couple of articles over at the Microsoft

Have Eclipse automatically import classes in jsp files specifically

旧城冷巷雨未停 提交于 2019-12-19 06:19:27
问题 I'm a spoiled Java developer, and I like to hover over my missing classes and choose 'Import com.package.ClassName'. How do you get Intellisense to work in jsp files? 回答1: Pressing Ctrl + Space the usual way to get the autocomplete with import has always worked for me in all Eclipse versions as far as I recall. Indeed, most other helpful tooling like the Ctrl + Shift + O (auto-organize imports), Ctrl + 1 (quick fix) and so on don't work in JSPs. But, after all, Java code should not be written

Declare Interfaces in typings file for JavaScript

佐手、 提交于 2019-12-19 05:56:44
问题 Project Info I'm working on a JavaScript project that utilizes .d.ts files. This is a subsequent question to a question I previously asked, so you can view more information regarding the project here. Problem Although I can normally extract functions from the typings files I can't extract interfaces or namespaces that are either empty or consist purely of interfaces. I have temporarily fixed this problem by creating a const implementation for each interface and using @typeof

How to hide private members of a Class?

大兔子大兔子 提交于 2019-12-19 05:42:12
问题 I've been using visual studio for some time and it annoys me everytime when I work with Classes. The problem is, when I create an object of a Class I tend to see the private members belongs to that class and I don't want to, because what if I create a class with 10+ private variable, then it will be a nightmare, there must be a way to hide private members, If there is a way could you please share it with me? Thank you :) EDIT: Here is a picture that will help you understand what I'm talking