Watch objects in memory in visual studio

  • Thread starter Thread starter vahid.xplod
  • Start date Start date
V

vahid.xplod

hi,
is there anyway to watch objects which are placed in memory in visual
studio.
for instance, assume that you have two forms in your application, and
your are debgging the application and also one of these forms. what i
want to know is how i can watch the another form objects ?

bye
 
When the debugger stops on a break point you need to have reference to it in
order to see its current state. Without reference you can't watch it.
 
Back
Top