|
-
November 30th, 2011, 09:29 AM
#1
VS2005:Plugin for storing array values
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?
-
November 30th, 2011, 12:41 PM
#2
Re: VS2005:Plugin for storing array values
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|