Author: ScottGu | Posted on: 10/22/2009 11:47:54 PM | Views : 944

This is the tenth in a series of blog posts I?m doing on the upcoming VS 2010 and .NET 4 release. 
In today?s blog post I?m going to cover a small but really nice improvement to code intellisense with VS 2010 ? which is its ability to better filter type and member code completion.  This enables you to more easily find and use APIs when writing code.
Code Intellisense with VS 2008 To help illustrate this intellisense improvements coming with VS 2010, let?s start by doing a simple scenario in VS 2008 where we want to write some code to enable an editing scenario with a GridView control.
We might start off by typing ?GridView1.Edit? to bring up intellisense to see what Edit members are available on the control.  Doing this with VS 2008 brings up the intellisense drop-down and filters ...

Go to the complete details ...