Skip to content

Commit fc6fa1f

Browse files
Fixed the text casing on some hyperlink text, noted when hyperlinks only went to another section in the article, and changed some formatting.
1 parent 4a3ae59 commit fc6fa1f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/debugger/watch-and-quickwatch-windows.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Add the values of the three variables to the **Watch** window as follows:
6767

6868
You should see the variable values changing as you iterate through the `for` loop.
6969

70-
If you're programming in native code, you may sometimes need to qualify the context of a variable name or an expression that has a variable name. The context is the function, source file, and module where a variable is located. If you have to qualify the context, you can use the context operator syntax. For more information, see [Context Operator (C++)](../debugger/context-operator-cpp.md).
70+
If you're programming in native code, you may sometimes need to qualify the context of a variable name or an expression that has a variable name. The context is the function, source file, and module where a variable is located. If you have to qualify the context, you can use the context operator syntax. For more information, see [Context operator (C++)](../debugger/context-operator-cpp.md).
7171

7272
## Observe expressions with the Watch window
7373

@@ -105,7 +105,7 @@ A tooltip provides information about why the expression wasn't evaluated if you
105105

106106
- An error occurred as the expression was being evaluated. For example, a time-out might have occurred, or a variable might have been out of scope.
107107

108-
- The expression has a function call, which could trigger a side effect in the application (see [Side effects and expressions](#bkmk_sideEffects)).
108+
- The expression has a function call, which could trigger a side effect in the application (see the [Side effects and expressions](#bkmk_sideEffects) section).
109109

110110
- You've turned off automatic evaluation of properties and implicit function calls by the debugger (by choosing **Tools** > **Options** > **Debugging** > **General**, then clearing **Enable property evaluation and other implicit function calls**). The expression can't be automatically evaluated then.
111111

@@ -127,7 +127,7 @@ An expression known to have side effects is evaluated only once, when you first
127127

128128
One way to avoid all side effects is to turn off automatic function evaluation (by choosing **Tools** > **Options** > **Debugging** > **General**, then clearing **Enable property evaluation and other implicit function calls**).
129129

130-
When evaluation of properties or implicit function calls is turned off, you can force evaluation by using the **ac** format modifier (for C# only). See [Format Specifiers in C#](../debugger/format-specifiers-in-csharp.md).
130+
When evaluation of properties or implicit function calls is turned off, you can force evaluation by using the **ac** format modifier (for C# only). See [Format specifiers in C#](../debugger/format-specifiers-in-csharp.md).
131131

132132
## <a name="bkmk_objectIds"></a> Use object IDs in the Watch window (C# and Visual Basic)
133133

@@ -206,11 +206,11 @@ The **Watch** window may display a dynamic object, which is created from a type
206206
To insert a new watch variable that casts an object to a dynamic object:
207207

208208
1. Right-click any child of a **Dynamic View**.
209-
2. Choose **Add Watch**. Then *object*.*name* becomes ((**dynamic**) *object*).*name*.
209+
2. Choose **Add Watch**. Then `object.name` becomes `((dynamic) object).name`.
210210

211211
Evaluating the members of a **Dynamic View** can have side effects. For an explanation of what side effects are, see the [Side effects and expressions](#bkmk_sideEffects) section. For C#, the debugger doesn't automatically reevaluate the values shown in the **Dynamic View** when you step to a new line of code. For Visual Basic, expressions added through the **Dynamic View** are automatically refreshed.
212212

213-
For instructions about how to refresh the **Dynamic View** values, see the [Refreshing Watch values that are out of date](#bkmk_refreshWatch) section.
213+
For instructions about how to refresh the **Dynamic View** values, see the [Refresh Watch values that are out of date](#bkmk_refreshWatch) section.
214214

215215
If you want to display only the **Dynamic View** for an object, you can use the **dynamic** format specifier in the **Watch** window:
216216

@@ -261,4 +261,4 @@ You can observe a variable in the **QuickWatch** window as follows:
261261

262262
## See also
263263

264-
[Debugger Windows](../debugger/debugger-windows.md)
264+
[Debugger windows](../debugger/debugger-windows.md)

0 commit comments

Comments
 (0)