Skip to content

Commit 77d50ac

Browse files
committed
Update link for debugger article on sending messages to Output window
1 parent 47e4a4b commit 77d50ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/debugger/diagnostic-messages-in-the-output-window.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Send messages to the Output window
33
description: Write run-time messages to the Output window in Visual Studio using the Debug class or the Trace class, which are part of the System.Diagnostics class library.
4-
ms.date: 11/08/2018
4+
ms.date: 10/03/2024
55
ms.topic: how-to
66
helpviewer_keywords:
77
- diagnostic messages [C#]
@@ -28,7 +28,7 @@ You can write run-time messages to the **Output** window using the <xref:System.
2828
## Output methods
2929
The <xref:System.Diagnostics.Trace> and <xref:System.Diagnostics.Debug> classes provide the following output methods:
3030

31-
- Various `Write` methods, which output information without breaking execution. These methods replace the `Debug.Print` method used in previous versions of Visual Basic.
31+
- Various [Write](/dotnet/api/system.diagnostics.debug#methods) methods, which output information without breaking execution. These methods replace the `Debug.Print` method used in previous versions of Visual Basic.
3232

3333
- <xref:System.Diagnostics.Debug.Assert%2A?displayProperty=fullName> and <xref:System.Diagnostics.Trace.Assert%2A?displayProperty=fullName> methods, which break execution and output information if a specified condition fails. By default, the `Assert` method displays the information in a dialog box. For more information, see [Assertions in managed code](../debugger/assertions-in-managed-code.md).
3434

0 commit comments

Comments
 (0)