How do you quickly find the implementation(s) of an interface’s method? [duplicate]

Since I don’t like to use the mouse while coding, I usually move the cursor over the method type ctrl+k clrl+t to open the Call Hierarchy window move down to Implements node. type Return to go to the selected implementation AFAIK this is the quickest way to find the implementation of a method, without ReSharper. … Read more

Why doesn’t VS 2008 display extension methods in Intellisense for String class

It’s by explicit design. The problem is that while String most definitely implements IEnumerable<T>, most people don’t think of it, or more importantly use it, in that way. String has a fairly small number of methods. Initially we did not filter extension methods off of String and the result was a lot of negative feedback. … Read more

MVC Razor view Intellisense broken in VS 2013/2015/2017

I considered editing @ChrisMoschini’s post, but thought it was different enough. My issue was that I started a new MVC5 application, and blindly copied over too many web.config settings from an old MVC3 project I wanted to use as a template/starting point. Doing this caused me to have some invalid versions referenced in my web.config. … Read more

Visual Studio 2015 RTM – Lost JavaScript support after update TypeScript Tools

This is a known bug that we have fixed in VS 2015, however you could have been affected if you installed the “Universal Windows App Development Tools” during a specific period of time. We will soon be publishing a KB with the following workaround: If the “Universal Windows App Development Tools” are still installed: Go … Read more

Why is SQL Server 2008 Management Studio Intellisense not working?

I understand this post is old but if anybody is still searching and has not found a solution to the intellisense issue even after re-installing, applying the cumulative updates, or other methods, then I hope I may be of assistance. I have Applied SQL 2008 R2 Service Pack 1 which you can download here http://www.microsoft.com/download/en/details.aspx?id=26727 … Read more