I'm debugging a software and i need to dump selected variable (array of float or double values) to a txt file (or into other format) from debugger.
Is there any Plugin available for Visual Studio 2005?
Printable View
I'm debugging a software and i need to dump selected variable (array of float or double values) to a txt file (or into other format) from debugger.
Is there any Plugin available for Visual Studio 2005?
Why not add debugging code that opens a text file, and dumps the values? I don't know of any plugin that is readily available, though that doesn't prevent you from writing one.
Another thing, if these are plain old arrays ("POA?"), you can list the values in the watch window. After the variable name, put a ',' and the number. For example, enter "myArray,10" in the watch window, and 10 entries in the array are listed.
Viggy