Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a tool built into Visual Studio or a third-party add-on that would allow you to search all of the objects in memory for a certain string?

Here is a simple example to give an idea of what I'm trying to accomplish:

Dim myClass as New Foo()
myClass.someVar = "Test"

I would like to be able to search all in-memory objects for the string 'Test' and see which objects have this value. I don't want to manually look through Quick Watch but have a tool that would do that kind of manual searching.

share|improve this question
2  
Usually for looking at the objects currently in memory, I would use the SOS Debugging Extension but I've no idea if it supports searching for a string in the way you need. Might be worth a look? – Smudge202 Jul 13 '11 at 15:08
Appreciate the link I'll check it out when I get some spare time. – Jeff Fol Jul 15 '11 at 18:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.