views:

38

answers:

1

When using the visual studio 2008 debugger with c# i can right-click on a variable and choose "Make Object ID" which allows me to watch that object (via it's ID) regardless of whether it is in the current stack frame or not.

When the debugger is in VB code, (doesnt matter if it's run from a c# unit test or a vb unit test) That option isn't there.

Where did VB put this feature? Or does it simply not support it like so many other helpful c# features?

A: 

As far as i know this feature is specialy designed for C# and J#. So it is not available when debugging VB.Net Code.

DaDom
Yeah, that's what I afraid of, but was hoping somebody would prove otherwise.
Josh Sterling