Skip to content

Commit 06b695c

Browse files
committed
link text updates
1 parent fd8bf83 commit 06b695c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/debugger/create-custom-views-of-dot-managed-objects.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You can customize the way Visual Studio displays data types in debugger variable
2929

3030
## Native Code
3131

32-
For C++ code, you can add custom data type expansions using the Natvis framework, as described in [Create custom views of native object in the debugger](/visualstudio/debugger/create-custom-views-of-native-objects). For C++/CLI code, you also can use attributes, described here in this article.
32+
For C++ code, you can add custom data type expansions using the Natvis framework, as described in [Create custom views of C++ objects in the debugger](/visualstudio/debugger/create-custom-views-of-native-objects). For C++/CLI code, you also can use attributes, described here in this article.
3333

3434
## Attributes
3535

@@ -43,7 +43,7 @@ You can write a visualizer to display any managed data type. For more informatio
4343

4444
## See Also
4545

46-
- [Using DebuggerTypeProxy Attribute](../debugger/using-debuggertypeproxy-attribute.md)
47-
- [Using the DebuggerDisplay Attribute](../debugger/using-the-debuggerdisplay-attribute.md)
46+
- [Tell the debugger what to show using the DebuggerDisplay Attribute](../debugger/using-the-debuggerdisplay-attribute.md)
47+
- [Tell the debugger what type to show using DebuggerTypeProxy Attribute](../debugger/using-debuggertypeproxy-attribute.md)
4848
- [Watch and QuickWatch Windows](../debugger/watch-and-quickwatch-windows.md)
4949
- [Enhancing Debugging with the Debugger Display Attributes](/dotnet/framework/debug-trace-profile/enhancing-debugging-with-the-debugger-display-attributes)

docs/debugger/create-custom-views-of-native-objects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Create custom views of native objects"
2+
title: "Create custom views of C++ objects"
33
description: Use the Natvis framework to customize the way that Visual Studio displays native types in the debugger
44
ms.date: "10/31/2018"
55
ms.topic: "conceptual"
@@ -14,7 +14,7 @@ manager: jillfra
1414
ms.workload:
1515
- "cplusplus"
1616
---
17-
# Create custom views of native objects in the debugger
17+
# Create custom views of C++ objects in the debugger
1818

1919
The Visual Studio *Natvis* framework customizes the way native types appear in debugger variable windows, such as the **Locals** and **Watch** windows, and in **DataTips**. Natvis visualizations can help make the types you create more visible during debugging.
2020

docs/debugger/debugger-tips-and-tricks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ If it is difficult or time-consuming to recreate a particular state in your app,
4949

5050
## Configure the data to show in the debugger
5151

52-
For C#, Visual Basic, and C++/CLI code, you can tell the debugger what information to show using the [DebuggerDisplay](../debugger/using-the-debuggerdisplay-attribute.md) attribute. For C++ code, you can do the same using [Natvis visualizations](create-custom-views-of-native-objects.md).
52+
For C#, Visual Basic, and C++ (C++/CLI code only), you can tell the debugger what information to show using the [DebuggerDisplay](../debugger/using-the-debuggerdisplay-attribute.md) attribute. For C++ code, you can do the same using [Natvis visualizations](create-custom-views-of-native-objects.md).
5353

5454
## Change the execution flow
5555

docs/debugger/viewing-data-in-the-debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The [!INCLUDE[vsprvs](../code-quality/includes/vsprvs_md.md)] debugger provides
2626

2727
## Create custom views of data in variable windows and DataTips
2828

29-
Many of the [debugger windows](../debugger/debugger-windows.md), such as the **Autos** and **Watch** windows, allow you to inspect variables. You can customize how native types, managed objects, and your own types are shown in the debugger variable windows and in [DataTips](../debugger/view-data-values-in-data-tips-in-the-code-editor.md). For more information, see [Create custom views of native objects](../debugger/create-custom-views-of-native-objects.md) and [Create custom views of objects](../debugger/create-custom-views-of-dot-managed-objects.md).
29+
Many of the [debugger windows](../debugger/debugger-windows.md), such as the **Autos** and **Watch** windows, allow you to inspect variables. You can customize how C++ types, managed objects, and your own types are shown in the debugger variable windows and in [DataTips](../debugger/view-data-values-in-data-tips-in-the-code-editor.md). For more information, see [Create custom views of C++ objects](../debugger/create-custom-views-of-native-objects.md) and [Create custom views of objects](../debugger/create-custom-views-of-dot-managed-objects.md).
3030

3131
## Create custom visualizers
3232

0 commit comments

Comments
 (0)