You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ide/immediate-window.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The **Immediate** window supports IntelliSense.
26
26
27
27
## Display the values of variables
28
28
29
-
The **Immediate** window is particularly useful when you're debugging an app. For example, to check the value of a variable `varA`, you can use the [Print command](../../ide/reference/print-command.md):
29
+
The **Immediate** window is particularly useful when you're debugging an app. For example, to check the value of a variable `varA`, you can use the [Print command](../ide/reference/print-command.md):
30
30
31
31
```cmd
32
32
>Debug.Print varA
@@ -71,7 +71,7 @@ You can use the **Immediate** window to execute a function or subroutine at desi
71
71
72
72
The **Immediate** window runs `MyFunction` and displays `4`.
73
73
74
-
If the function or subroutine contains a breakpoint, Visual Studio breaks execution at the appropriate point. You can then use the debugger windows to examine your program state. For more information, see [Walkthrough: Debugging at Design Time](../../debugger/walkthrough-debugging-at-design-time.md).
74
+
If the function or subroutine contains a breakpoint, Visual Studio breaks execution at the appropriate point. You can then use the debugger windows to examine your program state. For more information, see [Walkthrough: Debugging at Design Time](../debugger/walkthrough-debugging-at-design-time.md).
75
75
76
76
You can't use design-time expression evaluation in project types that require starting up an execution environment, including Visual Studio Tools for Office projects, web projects, Smart Device projects, and SQL projects.
77
77
@@ -124,9 +124,9 @@ In some settings configurations, first-chance exception notifications are displa
124
124
125
125
## See also
126
126
127
-
-[Navigating through Code with the Debugger](../../debugger/navigating-through-code-with-the-debugger.md)
0 commit comments