intellisense

Intellisense for angular2

╄→гoц情女王★ 提交于 2019-12-12 06:36:42
问题 There are some problems with my Visual Studio 2015, actually with Intellisense. It doesn’t recognize angular syntax. For example if I try to write *ngFor, or *ngIf, or [style.margin.px] I am not getting any hints from Intellisense, but when I manually write the code and run it, everything works fine. I’ve tried to install AngularIntellisense from NGPM, nothing changed. I have all the latest updates for VS 2015. Any solution for this? 回答1: You can use visual Studio code. It provides the

intellisense error but no build error

↘锁芯ラ 提交于 2019-12-12 05:29:15
问题 My .net solution builds fine but I keep getting intellisense errors "the type or namespace name could not be found ( are you missing a using directive or an assembly reference?)". I tried suspending and restarting resharper, clear resharper cache, cleaning and rebuilding the solution, restarting my machine, closing and opening visual studio and deleting the suo and obj files by running git clean and going to the directory and verifying that those binaries were deleted. Finally I moved from

SQL Server 2008 RC2 Intellisense not working

杀马特。学长 韩版系。学妹 提交于 2019-12-12 05:17:10
问题 I have tried everythig. I checked if it is enabled, I installed the hotfix (I already had it), and I just did a repair. I still don't have any intellisence. What else can I check? This is driving me crazy!! 回答1: Check the following reasons why it might not work: 1 The query window is connected to a downlevel server (e.g. SQL Server 2005), where IntelliSense does not function 2 Maybe you need to install SQL 2008 R2 Service Pack 1 according to here 回答2: I did a full reinstall (not repair) and

Autocomplete case issue

喜夏-厌秋 提交于 2019-12-12 05:13:40
问题 When writing C# in Visual Studio (Community 2017), it's always really bugged me that when I have two similarly-named identifiers, one beginning with upper-case and one beginning with lower-case, that sometimes when I start typing in lower-case it'll autocomplete on the upper-case identifier instead. This typically happens when I'm assigning from a lower-case parameter to an upper-case field/property, for example: When I start typing my... , it matches the lower-case myValue until I type the v

Dictionary<string,string> intellisense

大兔子大兔子 提交于 2019-12-12 05:13:16
问题 Is there a way to get intellisense for all the keys in a Dictionary<string,string> in C#? Or is it possible to get intellisense for a method with a string parameter. I want to have something like ResourceManager.GetString("") has. and if possible i don't want to create a static class with constant strings to simulate it. Edit: I am currently using a dictionary to combine multiple resource files in to one dictionary, this is done becouse resources are used in multiple projects and need to be

Fresh Xamarin WebView Razor Template Intellisense Errors

夙愿已清 提交于 2019-12-12 05:04:22
问题 Fresh WebViewApp (Android) Template out of the box shows Intellisense Errors (see below). Why does VS2017 not find the references? Do the referenced dlls even contain the required namespaces? How can I solve this issue? Basic demo Official Xamarain RazorTodo Sample also has same Intellisense Errors Details below... Errors occur only in RazorView.cshtml (only when opened) Error CS0234 The type or namespace name 'Linq' does not exist in the namespace 'System' (are you missing an assembly

intellisense not shown on public classes, but on private ones

≡放荡痞女 提交于 2019-12-12 04:57:15
问题 I am currently trying out writing my own Intellisense comments into my sources as described in stackoverflow 8240402 stackoverflow 1632942 but it's not yet working correctly. I'm using VS 2008. I have a assembly "testAssembly" (compiled to a DLL) with ref class class1a and public ref class class1b : namespace testAssembly { /// <summary> /// Testkommentar class1a /// </summary> ref class class1a { int m_iValue; public: /// <summary> /// Testkommentar class1a constructor /// </summary> class1a

Disable specific autocomplete suggestion in Visual Studio 2013

淺唱寂寞╮ 提交于 2019-12-12 04:38:29
问题 I am working in a C project with Microsoft Visual Studio 2013, and it is performing an automatic replacement that I can't figure out how to disable. I have a switch statement in a function that looks something like this: A_TYPEDEF_ENUM parameter[MAX_PARAMETERS]; uint8_t numParams; switch (value) { case optionOne: param[0] = thing1; param[1] = thing2; numParams = 2; break; case optionTwo: param[0] = thing3; numParams = 1; break; default: /* handle error */ break; } I'm adding some new cases to

Javascript and VS2012 Intellisense

人盡茶涼 提交于 2019-12-12 04:14:27
问题 I am new to Visual Studio 2012 and Javscript coding. I have two questions i could not find answers on the web: i have a webforms project and added some js-files to the sript-folder (http://raphaeljs.com/). Now i want to have Intellisense support for that js-library i added. Is that possible? for what is the "_references.js" file in the scripts folder? I added all the js-library files to that file but it doesn't enable intellisense. regards 回答1: I'm not sure about Visual Studio 2012, but in

JetBrains WebStorm intellisense

自古美人都是妖i 提交于 2019-12-12 04:14:25
问题 When I see the intellisense menu in WebStorm, it shows little circular icons with lettering on them (i.e. "v", "m", "f", "p"). Does anyone know what all the icons mean, or know where there is a reference to understanding WebStorm's intellisense? 回答1: You can find the icons reference in WebStorm help. v - variable m - method f - field p - parameter 来源: https://stackoverflow.com/questions/12215159/jetbrains-webstorm-intellisense