views:

463

answers:

1

I am trying to see the properties of an object with over 300 properties in the Immediate Window of Visual Studio 2005. Only the first 100 items are displayed, followed by this caption:

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

I am trying to see the rest of the items, but can't figure it out.

I realize that I could see these in a Watch window, but that's not the same.

+3  A: 

The immediate window was designed to be a quick view tool. If you want to see more detail, you will have to view it in either the Watch Window or the Quick Watch Window.

Another option is to write a Visual Studio AddIn that operates similarly to the Immediate Window, but has more options.

Gabriel McAdams
Thanks. I was hoping that I had just overlooked something simple, something that doesn't involve so much clicking around, something that would make it easy to scroll through hundreds of items. I think you have identified the best alternatives.
DOK