views:

76

answers:

3

Is it possible to see a substring of a string when looking a string in the Watch window during a debugging session?

+3  A: 

Yes - just watch

text.Substring(1, 15)

or whatever.

What happened when you tried this?

EDIT: "doesn't work" isn't really a description of what happened. I've just tried this myself in VS2008, and it worked fine. The value greys out when you step, but there's a little "refresh" button on the right hand side of the value box... when you click that, it will re-evaluate the expression.

If that's not happening for you, please describe what is happening for you.

Jon Skeet
doesn't work in the watch window but in the immediate window.
tinmaru
+1  A: 

I tend to use the Immediate Window for this sort of thing, but as Jon Skeet has said you can also do it directly in the Watch Window.

Matthew Vines
Ditto re: Immediate Window.
JMD
A: 

sure, just put in a new watch entry with the substring you want to see :-

Joel Martinez