Debugger does not show full value of string

When inspecting my JSON string in the debugger it does now show full value but writing it to Debug window the full value is there.

using VS2022

I looked through some older source code (from netmf) and it looks like a lot of the buffers that the debug protocol uses are limited to 128 characters, which is pretty close to what you show there when I count up text and presumed whitespace characters. That’s not a smoking gun, but I’d bet better than even money that that’s the limit for a single debug transfer of an ‘inspect’ command.

The Debug Output stream though is, of course, a stream so the length doesn’t get truncated.

2 Likes