Where is the Debug Option?

zequion 361 Reputation points
2024-07-21T05:31:16.54+00:00

I use the latest version of Vimagen

S. I can't find the Debug button to check the value of a variable.

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,816 questions
0 comments No comments
{count} votes

Accepted answer
  1. Jiachen Li-MSFT 30,851 Reputation points Microsoft Vendor
    2024-07-22T01:26:09.4033333+00:00

    Hi @zequion ,

    To display the Parallel Watch window, you need to set a breakpoint in the code.

    On the menu bar, choose Debug, Start Debugging. Wait for the application to reach the breakpoint.

    On the menu bar, choose Debug, Windows, Parallel Watch, and then choose a watch window. You can open as many as four windows.

    User's image

    Then you can manually entered the variables.

    enter image description here

    Best Regards.

    Jiachen Li


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


2 additional answers

Sort by: Most helpful
  1. Viorel 116.5K Reputation points
    2024-07-21T13:50:27.6566667+00:00

    Put some breakpoints (using <F9> key) in your code. Press the “▶ Books Explorer” button to start the debugger (or press <F5>). When the program stops at breakpoints, investigate the variables in Locals or Watch windows.

    0 comments No comments

  2. zequion 361 Reputation points
    2024-07-22T00:04:46.2566667+00:00

    Being in a Debug F9 line, what I want to know is where is the screen where the variable can be manually entered and you can also "add inspection".

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.