Visual Studio 2019 调试入门教程系列:10. 调试Windows桌面应用程序
发布时间: 2023-12-19 19:09:04 阅读量: 34 订阅数: 26
# 第一章:Visual Studio 2019 调试入门
- 1.1 Visual Studio 2019 调试功能概述
- 1.2 设置断点和监视表达式
## 2. 第二章:创建Windows桌面应用程序
- 2.1 使用Visual Studio 2019创建Windows桌面应用程序项目
- 2.2 编写简单的Windows桌面应用程序代码
### 3. 第三章:调试Windows桌面应用程序基础
在本章中,我们将介绍如何进行 Windows 桌面应用程序的调试基础知识。我们将学习如何运行程序并观察输出,以及如何使用单步调试和逐过程执行代码来定位和解决问题。
#### 3.1 运行程序并观察输出
首先,我们需要在 Visual Studio 2019 中打开我们的 Windows 桌面应用程序项目。然后,通过点击“运行”按钮或使用快捷键 F5 来启动程序。我们将观察程序的输出,查看是否有预期之外的行为或错误发生。
```csharp
// 示例代码
static void Main(string[] args)
{
int a = 5;
int b = 0;
```
0
0