Skip to content

Commit 46dcff8

Browse files
committed
Update First Look articles
1 parent 5802fbd commit 46dcff8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/debugger/debugger-feature-tour.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "First look at the debugger"
2+
title: "Overview of the debugger"
33
description: Get started debugging your applications by using the Visual Studio debugger and see what your code is doing while it runs.
44
ms.topic: conceptual
55
ms.date: 3/11/2025
@@ -10,7 +10,7 @@ ms.author: mikejo
1010
manager: mijacobs
1111
ms.subservice: debug-diagnostics
1212
---
13-
# First look at the Visual Studio Debugger
13+
# Overview of the Visual Studio debugger
1414

1515
This topic introduces the debugger tools provided by Visual Studio. In the Visual Studio context, when you *debug your app*, it usually means that you are running the application with the debugger attached (that is, in debugger mode). When you do this, the debugger provides many ways to see what your code is doing while it runs. You can step through your code and look at the values stored in variables, you can set watches on variables to see when values change, you can examine the execution path of your code, et al. If this is the first time that you've tried to debug code, you may want to read [Debugging for absolute beginners](../debugger/debugging-absolute-beginners.md) before going through this topic. If you are trying to perform a specific task and need to know what feature to use, see [Debugger feature finder](../debugger/find-your-debugging-task.yml). To try AI-assisted debugging, see [Debug with Copilot](../debugger/debug-with-copilot.md).
1616

docs/debugger/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
items:
55
- name: What is debugging?
66
href: what-is-debugging.md
7-
- name: First look at the debugger
7+
- name: Overview of the debugger
88
href: debugger-feature-tour.md
99
- name: Debugging techniques and tools
1010
href: write-better-code-with-visual-studio.md

docs/profiling/profiling-feature-tour.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "First look at profiling tools"
2+
title: "Overview of the profiling tools"
33
description: Review the different diagnostic tools available in Visual Studio for profiling your C#, Visual Basic, C++, and F# applications.
44
ms.date: 1/17/2025
55
ms.topic: conceptual
@@ -15,7 +15,7 @@ manager: mijacobs
1515
ms.subservice: debug-diagnostics
1616
zone_pivot_groups: programming-languages-set-two
1717
---
18-
# First look at profiling tools (C#, Visual Basic, C++, F#)
18+
# Overview of the profiling tools (C#, Visual Basic, C++, F#)
1919

2020
Application performance measuring tools are essential for developers who want to optimize their code and improve application performance. Visual Studio offers a range of profiling and diagnostics tools that can help you diagnose memory and CPU usage and other application-level issues. With these tools, you can accumulate performance data while you run your application. A profiler can help you make informed decisions quickly by providing a visual depiction of execution times and CPU usage for your application. In this article, we give a quick look at the most common profiling tools.
2121

docs/profiling/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
href: index.yml
33
- name: Overview
44
items:
5-
- name: First look at profiling tools
6-
href: profiling-feature-tour.md
75
- name: What is a profiler?
86
href: what-is-a-profiler.md
7+
- name: Overview of the profiling tools
8+
href: profiling-feature-tour.md
99
- name: Which tool should I use?
1010
href: choose-performance-tool.md
1111
- name: Run profiling tools on release or debug builds

0 commit comments

Comments
 (0)