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/debugger/walkthrough-debugging-at-design-time.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ To debug XAML code behind an app from the XAML designer, such as declarative dat
23
23
24
24
## Use the Immediate window
25
25
26
-
You can use the Visual Studio **Immediate** window to execute a function or subroutine without running your app. If the function or subroutine contains a breakpoint, Visual Studio will break at the breakpoint. You can then use the debugger windows to examine your program state. This feature is called *debugging at design time*. For detailed information, see [Use the Immediate window](../ide/reference/immediate-window.md)
26
+
You can use the Visual Studio **Immediate** window to execute a function or subroutine without running your app. If the function or subroutine contains a breakpoint, Visual Studio will break at the breakpoint. You can then use the debugger windows to examine your program state. This feature is called *debugging at design time*. For detailed information, see [Use the Immediate window](../ide/immediate-window.md)
27
27
28
28
The following example is in Visual Basic. You can also use the **Immediate** window at design time in C#, F#, and C++/CLI apps. For C++/CLI, compile without the /clr option to use the Immediate window.
Copy file name to clipboardExpand all lines: docs/ide/immediate-window.md
+9-9Lines changed: 9 additions & 9 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 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):
29
+
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):
30
30
31
31
```cmd
32
32
>Debug.Print varA
@@ -41,7 +41,7 @@ The question mark (`?`) is an alias for `Debug.Print`, so this command can also
41
41
Both versions of this command return the value of the variable `varA`.
42
42
43
43
> [!TIP]
44
-
> 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).
44
+
> 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).
45
45
46
46
## Design-time expression evaluation
47
47
@@ -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: Debug 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: Debug 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
## Related content
126
126
127
-
-[Navigating through code by using the debugger](../../debugger/navigating-through-code-with-the-debugger.md)
Copy file name to clipboardExpand all lines: docs/ide/paste-json-xml.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ In Visual Studio, you can copy text from JSON or XML files and then paste the te
16
16
:::image type="content" source="media/paste-json-xml-class-sml.png" alt-text="Screenshot of the Paste Special option from the Edit menu in Visual Studio." lightbox="media/paste-json-xml-class-lrg.png":::
17
17
18
18
> [!TIP]
19
-
> If you don't see the **Paste Special** option on the **Edit** menu, make sure that you have at least one of the following [**workloads**](../../install/modify-visual-studio.md#change-workloads-or-individual-components) installed: **ASP.NET and web development**, **Azure development**, or **.NET desktop development**. Then, make sure that you select the program file for your app. For example, for a C# app, select the **Program.cs** file in [Solution Explorer](../use-solution-explorer.md).
19
+
> If you don't see the **Paste Special** option on the **Edit** menu, make sure that you have at least one of the following [**workloads**](../install/modify-visual-studio.md#change-workloads-or-individual-components) installed: **ASP.NET and web development**, **Azure development**, or **.NET desktop development**. Then, make sure that you select the program file for your app. For example, for a C# app, select the **Program.cs** file in [Solution Explorer](../ide/use-solution-explorer.md).
20
20
21
21
**JSON** (**J**ava**S**cript **O**bject **N**otation) and **XML** (e**X**tensible **M**arkup **L**anguage) are similar in that they're both used to store and transport data. JSON, however, is less verbose and can use arrays.
22
22
@@ -163,5 +163,5 @@ namespace PasteDemo
163
163
164
164
## See also
165
165
166
-
-[Features of the code editor](../../ide/writing-code-in-the-code-and-text-editor.md)
167
-
-[Productivity guide for Visual Studio](../productivity-features.md)
166
+
-[Features of the code editor](../ide/writing-code-in-the-code-and-text-editor.md)
167
+
-[Productivity guide for Visual Studio](../ide/productivity-features.md)
0 commit comments