|
|
-
|
|
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...
|
|
-
|
|
VS 2010 now supports importing/exporting breakpoints to XML files – which you can then pass off to another developer, attach to a bug report, or simply re-load later.
1. Go to Debug -> Windows -> Breakpoints window, which shows all breakpoints
2. You c...
|
|
-
|
|
VS 2010 also now supports importing/exporting pinned DataTips to XML files – which you can then pass off to other developers, attach to a bug report, or simply re-load later.
To export the datatips, choose Debug -> Export Datatips
To import the datati...
|
|
-
|
|
While debugging code, we wants to see the variable data to be always visible, i.e. pin to solution, even when execution is away from the variable. In this scenario, Visual Studio 2010 provides variables data to be pinned.
While debugging, select the va...
|
|
-
|
|
This feature allows you to save log information from IntelliTrace window itself. While viewing the intellitrace log information, if we wants to save it into a log file, we can save it by clicking "Save" icon in Intellitrace window.
![alt text][1]
Note...
|
|
-
|
|
When this features is enabled, IntelliTrace will save log based on user preference, instead of saving log file for each and every debugging session. This will save your good amount of hard drive from many unnecessary IntelliTrace log.
1. Go to Debug ->...
|
|
-
|
|
Visual Studio 2010 provides various set of tools to debug and view simultaneously running threads. By using Parallel Stacks window and threads window, we can find the information about the threads that are currently in executing.
Suppose below code wil...
|
|
-
|
|
Visual studio 2010 provides an important feature, "Bookmarks", which can be used to mark the certain locations in code and use them for later reference.
You can create a bookmark by pressing Ctrl+k,Ctrl+k on a line. On creating a bookmark, this will c...
|
|