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
+7-28Lines changed: 7 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,11 +26,7 @@ The **Immediate** window supports IntelliSense.
26
26
27
27
## Display the values of variables
28
28
29
-
<<<<<<< HEAD:docs/ide/immediate-window.md
30
-
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):
31
-
=======
32
-
The **Immediate** window is useful when you debug an app. For example, to check the value of a variable `varA`, you can use the [Print command](../../ide/reference/print-command.md):
The **Immediate** window is useful when you debug an app. For example, to check the value of a variable `varA`, you can use the [Print command](../ide/reference/print-command.md):
34
30
35
31
```cmd
36
32
>Debug.Print varA
@@ -45,11 +41,7 @@ The question mark (`?`) is an alias for `Debug.Print`, so this command can also
45
41
Both versions of this command return the value of the variable `varA`.
46
42
47
43
> [!TIP]
48
-
<<<<<<< HEAD:docs/ide/immediate-window.md
49
-
> To issue a Visual Studio command in the **Immediate** window, you must preface the command with a greater than sign (>). To enter multiple commands, switch to the [Command window](../ide/reference/command-window.md).
50
-
=======
51
-
> To issue a Visual Studio command in the **Immediate** window, you must preface the command with a greater than sign (`>`). To enter multiple commands, switch to the [Command window](command-window.md).
> To issue a Visual Studio command in the **Immediate** window, you must preface the command with a greater than sign (`>`). To enter multiple commands, switch to the [Command window](../ide/reference/command-window.md).
53
45
54
46
## Design-time expression evaluation
55
47
@@ -79,11 +71,7 @@ You can use the **Immediate** window to execute a function or subroutine at desi
79
71
80
72
The **Immediate** window runs `MyFunction` and displays `4`.
81
73
82
-
<<<<<<< HEAD:docs/ide/immediate-window.md
83
-
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).
84
-
=======
85
-
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: Debug at design time](../../debugger/walkthrough-debugging-at-design-time.md).
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: Debug at design time](../debugger/walkthrough-debugging-at-design-time.md).
87
75
88
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.
89
77
@@ -136,18 +124,9 @@ In some settings configurations, first-chance exception notifications are displa
136
124
137
125
## Related content
138
126
139
-
<<<<<<< HEAD:docs/ide/immediate-window.md
140
-
-[Navigating through Code with the Debugger](../debugger/navigating-through-code-with-the-debugger.md)
127
+
-[Navigating through code by using the debugger](../debugger/navigating-through-code-with-the-debugger.md)
0 commit comments