Skip to content

Commit 0cabe2d

Browse files
authored
changed files by pdets auto publish service, publishid[6dc353d0-f105-41e9-857b-eb69afb7dabe] and do [publish].
1 parent 7a6f59c commit 0cabe2d

11 files changed

+21
-21
lines changed

learn-pr/wwl-azure/implement-collection-types/3-implement-ordered-collections-typed-list.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
### YamlMime:ModuleUnit
22
uid: learn.wwl.implement-collection-types.implement-ordered-collections-typed-list
3-
title: Implement Ordered Collections with List<T>
3+
title: Implement ordered Collections with List<T>
44
metadata:
5-
title: Implement Ordered Collections with List<T>
5+
title: Implement ordered Collections with List<T>
66
description: "Learn how to use List for managing ordered collections, including adding, removing, and iterating through items."
77
ms.date: 03/28/2025
88
author: wwlpublish
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
### YamlMime:ModuleUnit
2-
uid: learn.wwl.implement-collection-types.ensuring-uniqueness-typed-hashset
3-
title: Ensuring Uniqueness with HashSet<T>
2+
uid: learn.wwl.implement-collection-types.ensure-uniqueness-typed-hashset
3+
title: Ensuring uniqueness with HashSet<T>
44
metadata:
5-
title: Ensuring Uniqueness with HashSet<T>
5+
title: Ensuring uniqueness with HashSet<T>
66
description: "Explore how to use HashSet to manage unique collections and prevent duplicate elements."
77
ms.date: 03/28/2025
88
author: wwlpublish
@@ -12,4 +12,4 @@ metadata:
1212
- N/A
1313
durationInMinutes: 6
1414
content: |
15-
[!include[](includes/4-ensuring-uniqueness-typed-hashset.md)]
15+
[!include[](includes/4-ensure-uniqueness-typed-hashset.md)]
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
### YamlMime:ModuleUnit
2-
uid: learn.wwl.implement-collection-types.organize-data-key-value-pairs-using-typed-dictionary
3-
title: Organize Data with Dictionary<TKey, TValue>
2+
uid: learn.wwl.implement-collection-types.organize-data-key-value-pairs-use-typed-dictionary
3+
title: Organize data with Dictionary<TKey, TValue>
44
metadata:
5-
title: Organize Data with Dictionary<TKey, TValue>
5+
title: Organize data with Dictionary<TKey, TValue>
66
description: "Learn how to use Dictionary for storing and retrieving data using key-value pairs efficiently."
77
ms.date: 03/28/2025
88
author: wwlpublish
@@ -12,4 +12,4 @@ metadata:
1212
- N/A
1313
durationInMinutes: 8
1414
content: |
15-
[!include[](includes/5-organize-data-key-value-pairs-using-typed-dictionary.md)]
15+
[!include[](includes/5-organize-data-key-value-pairs-use-typed-dictionary.md)]

learn-pr/wwl-azure/implement-collection-types/6-exercise-implement-collection-types.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
### YamlMime:ModuleUnit
22
uid: learn.wwl.implement-collection-types.exercise-implement-collection-types
3-
title: Exercise - Implement Collection Types
3+
title: Exercise - Implement Collection types
44
metadata:
5-
title: Exercise - Implement Collection Types
5+
title: Exercise - Implement Collection types
66
description: "Practice implementing and using collection types like List, Dictionary, and HashSet in a banking application scenario."
77
ms.date: 03/28/2025
88
author: wwlpublish

learn-pr/wwl-azure/implement-collection-types/7-knowledge-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
### YamlMime:ModuleUnit
22
uid: learn.wwl.implement-collection-types.knowledge-check
3-
title: Knowledge Check
3+
title: Knowledge check
44
metadata:
5-
title: Knowledge Check
5+
title: Knowledge check
66
description: "Check what you've learned in this module."
77
ms.date: 03/28/2025
88
author: wwlpublish

learn-pr/wwl-azure/implement-collection-types/includes/1-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ C# collections are powerful tools for managing groups of objects dynamically, en
22

33
Imagine you're working in the banking industry, tasked with developing a system that manages customer accounts and transactions. You need a way to store customer IDs linked to their account details, ensure no duplicate transaction records, and maintain an ordered list of recent activities. Without the right tools, this task could become cumbersome and error-prone. C# collections like `List<T>`, `HashSet<T>`, and `Dictionary<TKey, TValue>` offer solutions tailored to these challenges. For instance, you can use `Dictionary<TKey, TValue>` to map customer IDs to account details for quick lookups, `HashSet<T>` to ensure transaction uniqueness, and `List<T>` to maintain an ordered sequence of activities. These collections streamline data management, making your application robust and efficient.
44

5-
## Learning bjectives
5+
## Learning objectives
66

77
- Apply C# Collections for Efficient Data Management
88
- Manage ordered collections using `List<T>` in C#

learn-pr/wwl-azure/implement-collection-types/includes/3-implement-ordered-collections-typed-list.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ Ordered collections in C#, such as the `List<T>` class, perform common operation
2020

2121
`List<T>` provides methods for adding, removing, and iterating through items efficiently. These operations are straightforward and commonly used in application development.
2222

23-
- **Adding items:** To append elements to the list, use the `Add` method.
24-
- **Removing items:** To delete elements, use methods like `Remove`, `RemoveAt`, or `Clear`.
25-
- **Iterating through items:** For enumeration, use a `foreach` loop or LINQ (Language Integrated Query).
23+
- **Adding items**: To append elements to the list, use the `Add` method.
24+
- **Removing items**: To delete elements, use methods like `Remove`, `RemoveAt`, or `Clear`.
25+
- **Iterating through items**: For enumeration, use a `foreach` loop or LINQ (Language Integrated Query).
2626

2727
```csharp
2828
// Example: Adding, removing, and iterating through a List<T>

learn-pr/wwl-azure/implement-collection-types/includes/8-summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ After completing this module, you're now able to:
77
- Utilize `Dictionary<TKey, TValue>` to store and retrieve data using unique key-value pairs.
88
- Choose the appropriate collection type based on specific application requirements, such as ensuring uniqueness or enabling fast lookups.
99

10-
Resources:
10+
## Resources
1111

1212
- [Microsoft Documentation on Collections](/dotnet/standard/collections/)
1313
- [C# `List<T>` Class Overview](/dotnet/api/system.collections.generic.list-1)

0 commit comments

Comments
 (0)