CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2006
    Posts
    75

    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?

  2. #2
    Join Date
    Feb 2002
    Posts
    4,640

    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
  •  





Click Here to Expand Forum to Full Width

Featured