Find a variable with a given value in VS2008

I have an instance variable with several members, many of which have their own members and so on. Using debugging and observation variables, I found a string variable with the specific value that I need, plunging into this variable.

However, having spent some time on other things and returning to this, I can no longer find where this value is located. When my application is paused, is there a way to search for variable values ​​in the current context for a given value?

To clarify if I have this structure:

myVariable
|
|--aMember1
|  |--subMember = "A value"
|
|--aMember2
   |--subMember = "Another value"

Is there a way (maybe use the list of hours in the VS debugger) to search myVariablefor any member or submenu with a value of "A", returning me the path myVariable->aMember->subMember?

+5
2

Visual Studio 2008 ( ).

, . " ". , , 1 #. .

+2

BugAid ( Visual Studio), search , DataTip QuickWatch .

. :

Search Feature

, BugAid QuickWatch ( ", " ), ( myVariable.aMember.subMember).

. "BugAid".

+1

All Articles