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
|
|
| |
|
|
|
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?