Skip to content

Commit 4fdad06

Browse files
authored
changed files by pdets auto publish service, publishid[05772cc2-f482-4bfb-bc4f-ee43cac68944] and do [publish].
1 parent 51c95b9 commit 4fdad06

14 files changed

+63
-62
lines changed

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction
44
metadata:
55
title: Introduction
66
description: "Introduction to the module."
7-
ms.date: 04/08/2025
7+
ms.date: 04/29/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/2-prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Prepare for guided project
44
metadata:
55
title: Prepare for guided project
66
description: "Use Visual Studio Code to develop a version of a C# console application."
7-
ms.date: 04/08/2025
7+
ms.date: 04/29/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/3-exercise-review-starter-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Review starter code
44
metadata:
55
title: Exercise - Review starter code
66
description: "Review the starter code provided for the guided project."
7-
ms.date: 04/08/2025
7+
ms.date: 04/29/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/4-exercise-add-suggested-donation-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Add suggested donation data
44
metadata:
55
title: Exercise - Add suggested donation data
66
description: "Add suggested donation data to the guided project."
7-
ms.date: 04/08/2025
7+
ms.date: 04/29/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/5-exercise-add-search.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Add dog search
44
metadata:
55
title: Exercise - Add dog search
66
description: "Add a dog search feature to the guided project."
7-
ms.date: 04/08/2025
7+
ms.date: 04/29/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/6-knowledge-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
### YamlMime:ModuleUnit
22
uid: learn.wwl.guided-project-work-variable-data-c-sharp.knowledge-check
3-
title: Knowledge check
3+
title: Module assessment
44
metadata:
5-
title: Knowledge check
5+
title: Module assessment
66
description: "Check what you learn in this module."
7-
ms.date: 04/08/2025
7+
ms.date: 04/29/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit
@@ -25,7 +25,7 @@ quiz:
2525
- content: "To find a substring in a larger string."
2626
isCorrect: false
2727
explanation: "Incorrect. `TryParse()` doesn't find a substring in a larger string."
28-
- content: "For the code `decimal.TryParse(numberString, out myConvert))` when the type of `numberString` is a String. Which best describes the value type for `myConvert` when the `TryParse()` is successful?"
28+
- content: "For the code `decimal.TryParse(numberString, out myConvert))`, when the type of `numberString` is a String. Which best describes the value type for `myConvert` when the `TryParse()` is successful?"
2929
choices:
3030
- content: "A string representing numeric digits."
3131
isCorrect: false

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/7-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Summary
44
metadata:
55
title: Summary
66
description: "Summary of the module."
7-
ms.date: 04/08/2025
7+
ms.date: 04/29/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/includes/1-introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ In completing this coding project, you apply your C# data knowledge and skills i
77
- Search data in arrays to display or update data.
88
- Modifying and building complex strings from multiple data sources, and formatting data for display across regions.
99

10-
Your team has found that it's important to search the pet data to identify animals with possible matches based on characteristics provided by potential owners. Further, the team wants to include a fundraising feature to include suggested donation data and to present the pet data with fewer lines of output.
10+
Your team found that it's important to search the pet data to identify animals with possible matches based on characteristics provided by potential owners. Further, the team wants to include a fundraising feature to include suggested donation data and to present the pet data with fewer lines of output.
1111

12-
You begin with a starting application that adds a predefined *sample* data to the pets array. The application has two menu items. The first item displays all the pet data, and the code is complete. The second is menu item, "Display all dogs with a specified characteristic", is "work in progress" that you complete.
12+
You begin with a starting application that adds predefined *sample* data to the pets array. The application has two menu items. The first menu item started with functional display of the pet data. The second is menu item, "Display all dogs with a specified characteristic," is "work in progress" that you complete.
1313

1414
You also make updates to existing code to add `suggestedDonation` data and display all data in a shortened format.
1515

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/includes/2-prepare.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Use the following steps to prepare for the guided project exercises.
6464
1. Open the extracted **Guided-project-Work-with-variable-data-in-CSharp-main** folder in Visual Studio Code
6565
1. Open Visual Studio Code locally (or open MS Learn sandbox and open Visual Studio Code if you aren't using a local dev environment)
6666
1. In Visual Studio Code, on the **File** menu, select **Open Folder**
67-
1. Navigate to the folder that contains your extracted files, expand the folder structure to locate the folder named "GuidedProject".
67+
1. Navigate to the folder that contains your extracted files. Expand the folder structure to locate the folder named "GuidedProject."
6868
1. Select **Guided-project-Work-with-variable-data-in-CSharp-main** and then select **Select Folder**
6969
7070
- The Visual Studio Code EXPLORER view should show two subfolders named **Final** and **Starter**.

learn-pr/wwl-language/guided-project-work-variable-data-c-sharp/includes/3-exercise-review-starter-code.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ In this first step of the development process, you review the code provided in t
44

55
The Program.cs file contains a preliminary version of the application that you're working on. The code includes features to generate and display the sample data for the application, and it displays a list of menu options that define the main features of the application.
66

7-
1. Ensure that you have the **GuidedProject** folder (Guided-project-Work-with-variable-data-in-CSharp-main) open in Visual Studio Code.
7+
1. Ensure that you have the "**GuidedProject**" folder (Guided-project-Work-with-variable-data-in-CSharp-main) open in Visual Studio Code.
88

9-
The **Prepare** unit (the previous unit in this module) includes a Setup section that describes the process for downloading the initial starting point for the guided project and opening the folder Visual Studio Code. If necessary, go back and follow the Setup instructions.
9+
The "**Prepare**" unit (the previous unit in this module) includes a Setup section that describes the process for downloading the initial starting point for the guided project and opening the folder Visual Studio Code. If necessary, go back and follow the Setup instructions.
1010

11-
1. In the **EXPLORER** view, expand the **Starter** folder, then select **Program.cs**.
11+
1. In the "**EXPLORER**" view, expand the "**Starter**" folder, then select "**Program.cs**."
1212

1313
When you select the Program.cs file, the file contents open in the main Editor area to the right of the EXPLORER.
1414

@@ -41,7 +41,7 @@ The Program.cs file contains a preliminary version of the application that you'r
4141
> [!NOTE]
4242
> When reading user entered values with the `Console.ReadLine()` method, it's best to enable a nullable type string using `string?` to avoid the code compiler generating a warning when you build the project.
4343

44-
The final variable (under comment #3) is the two-dimensional string array named `ourAnimals`. You initialized the number of rows, defined by maxPets, to 8. The number of characteristics that you're storing initially is six. The six characteristics match the number of string variables that you examined in the sample code, but the number of characteristics needs to expand to add a field for `suggestedDonation`.
44+
The final variable (under comment #3) is the two-dimensional string array named `ourAnimals`. You initialized the number of rows, defined by maxPets, to 8. The number of characteristics that you're storing initially is six. The six characteristics match the number of string variables that you examined in the sample code, but the number of characteristics needs to expand to add a field for `suggestedDonation`.
4545

4646
1. Scroll down the Program.cs file to examine the `for` loop that contains a `switch` selection construct within its code block.
4747

@@ -173,10 +173,10 @@ The Program.cs file contains a preliminary version of the application that you'r
173173
> The TERMINAL prompt has to be opened in the start folder and the TERMINAL should look similar to `..\ArrayGuidedProject\starter>`
174174

175175
When the code runs, two menu items are displayed.
176-
- Enter "`1`" to test the "List all of our current pet information" output
177-
- Enter "`2`" to test the placeholder message "under construction" message
176+
- Enter: `1`, to test the "List all of our current pet information" output
177+
- Enter: `2`, to test the placeholder message "under construction" message
178178

179-
1. Enter `1` followed by pressing the Enter key to "display all pets".
179+
1. Enter: `1`, followed by pressing the "Enter" key to "display all pets."
180180

181181
1. Check that all of the pet information displays.
182182

@@ -195,11 +195,11 @@ The Program.cs file contains a preliminary version of the application that you'r
195195

196196
1. Press the Enter key to continue and return to the menu.
197197

198-
1. At the menu prompt, enter `2` followed by pressing the Enter key.
198+
1. At the menu prompt, enter `2` followed by pressing the "Enter" key.
199199

200200
This choice is a place holder for "Display all dogs with a specified characteristic" functionality.
201201

202-
1. Check that the "UNDER CONSTRUCTION" message displays for "Display all dogs with a specified characteristic" selection.
202+
1. Check that the `UNDER CONSTRUCTION` message displays for `Display all dogs with a specified characteristic` selection.
203203

204204
You should observe the following output:
205205

0 commit comments

Comments
 (0)