|
|
-
|
|
Visual Studio 2010 also now includes a built-in “Extension Manager” within the IDE that makes it much easier for developers to find, download, and enable extensions online.
Go to Tools -> Extension Manager
Which shows already installed extensions. Yo...
|
|
-
|
|
Code snippet is a one of the cool features that is given in Visual Studio IDE. If you know the chunks of the code that you need to type over and over again throughout the coding, then this code snippets feature will help you . For example your exception...
|
|
-
|
|
Visual Studio 2010 provides capability to select rectangular region of code. Just press down "Alt" key and select the rectangular region you want to copy.
![alt text][1]
[1]: http://beyondrelational.com/images/images.ashx?id=24edc9f69d874364a917173...
|
|
-
|
|
VS2010 came up with the excellent feature of generating codes for you. Suppose, if you write a method, which does not exists, You can simply put cursor on method name, press "Ctrl+.", which automatically generates the method signature.
![alt text][1]
...
|
|
-
|
|
Often we want to find all the places the variable or selected member is used in current document. Reference Hightlighting makes very easier this. Just put the cursor on that word. It will automatically highlight all the references of the selected word i...
|
|
-
|
|
In Visual Studio 2010 loading of assemblies in the “Add Reference” dialog is pretty fast....
|
|
-
|
|
Visual Studio now came up with faster intellisense support. It is now 2-5 times faster than the earlier versions. It also has few functional enhancements.
1. In Visual Studio 2008, if we type the word, "test", intellisense will show only the members wh...
|
|
-
|
|
A nifty little feature that Microsoft has added is the Quick Search window. This isn't the same as the Search or Search and Replace window that searches for specific textual strings. It's different in the sense that it searches across symbols (methods, ...
|
|
-
|
|
Often when we are trying to debug/understand applications code, we always will see recursively from where the function is getting called or from this function, what are the other functions getting called. Especially in enterprise level applications, the...
|
|
-
|
|
Visual Studio 2010 provides search support for toolbox items. In toolbox, when you search for some word, it will show the control that matches with search word. On pressing tab key, focus will go to the next control that matches search text.
You can se...
|
|