Skip to content

Commit 237fef9

Browse files
committed
Merged main into live
2 parents fbad9b3 + 417d3db commit 237fef9

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

docs/get-started/csharp/tutorial-console.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ Let's change the code to handle this error. In *Program.cs*, replace the code fo
395395
while (num2 == 0)
396396
{
397397
Console.WriteLine("Enter a non-zero divisor: ");
398-
num2 = Convert.ToInt32(Console.ReadLine());
398+
num2 = Convert.ToDouble(Console.ReadLine());
399399
}
400400
Console.WriteLine($"Your result: {num1} / {num2} = " + (num1 / num2));
401401
break;
Loading

docs/ide/setting-bookmarks-in-code.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Set bookmarks in Visual Studio
33
description: Learn how to use bookmarks to mark lines in your code so that you can quickly return to a specific location, or jump back and forth between locations.
44
titleSuffix: ''
5-
ms.date: 09/09/2024
5+
ms.date: 09/12/2024
66
ms.topic: how-to
77
f1_keywords:
88
- VS.BookmarkWindow
@@ -31,7 +31,11 @@ Bookmark commands and icons are available in two places:
3131

3232
::: moniker-end
3333

34-
- The **Bookmarks** toolbar in the **Bookmarks** window; to open it, select **View** > **Bookmark Window** from the menu bar, or use the **Ctrl**+**K**, **Ctrl**+**W** keyboard shortcut. The **Bookmarks** window
34+
- The **Bookmarks** toolbar in the **Bookmarks** window; to open it, select **View** > **Bookmark Window** from the menu bar, or use the **Ctrl**+**K**, **Ctrl**+**W** keyboard shortcut.
35+
36+
:::image type="content" source="media/vs-2022/view-menu-bookmarks-window.png" alt-text="Screenshot that shows the Bookmarks window option in the View menu.":::
37+
38+
The **Bookmarks** window:
3539

3640
:::image type="content" source="media/bookmarks-window.png" alt-text="Screenshot that shows the Bookmarks window and the Bookmarks toolbar.":::
3741

subscriptions/about-benefits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Understand benefits in Visual Studio subscriptions
3-
author: evanwindom
3+
author: joseb-rdc
44
ms.author: amast
55
manager: shve
6-
ms.date: 09/09/2024
6+
ms.date: 09/12/2024
77
ms.topic: how-to
88
description: Explore benefits included in Visual Studio subscriptions, including benefits provided by partners, and how to activate the benefits.
99
---

0 commit comments

Comments
 (0)