|
|
-
|
|
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]
...
|
|
-
|
|
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...
|
|
-
|
|
Visual Studio 2010 has a new functionality, "Zoom" which helps, when you are showing some presentations or doing some webcasts. You can increase your code window size by changing zoom size. You can find zoom size combo box in left bottom corner of Visua...
|
|
-
|
|
Now Visual Studio 2010 introduced a new functionality, "Detaching Window outside the IDE". You can drag the window outside the Visual Studio editor. You can keep the 2 windows side by side and compare. Before if you are working on dual monitor, you will...
|
|
-
|
|
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...
|
|
-
|
|
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...
|
|
-
|
|
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, ...
|
|
-
|
|
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...
|
|
-
|
|
Visual Studio 2010 provides various Code Refactoring options. Few of these are
1. **ReName:** Often while developing, we would like to rename the method names/field names etc. When it is named, in all places it has to be changed. Visual Studio provides...
|
|
-
|
|
In Visual Studio 2010, we can import external styles and change the look and feel of visual studio. We can find some styles in "http://studiostyl.es"
1. Go to "http://studiostyl.es" and download any of the style.
2. In VS 2010, Go to Tools -> Import an...
|
|