Debug Question

G

Guest

While in debug mode in my C# app, I wanted to check a value so I set a break
statement and in the immediate window I entered:

? parentnav and hit the Enter key.

Since this is an object I got the first 99 lines or so followed by this:

<More... (The first 100 of 134 items were displayed.) >;;

Does anyone know how I can see the other 34 items?

Thanks

Tom
 
M

Mythran

Tom said:
While in debug mode in my C# app, I wanted to check a value so I set a
break
statement and in the immediate window I entered:

? parentnav and hit the Enter key.

Since this is an object I got the first 99 lines or so followed by this:

<More... (The first 100 of 134 items were displayed.) >;;

Does anyone know how I can see the other 34 items?

Thanks

Tom

Not sure how to do it in the debugger, but you can write code that will do
that for ya...and maybe print it out to a text file, or the debugger
window...just use Reflection :)

Mythran
 
C

Chris Dunaway

Using VS 2005? Just hover the mouse over the object in question and
will show the debugging visualizer where you can see any property
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top