Skip to content

Commit 73c8766

Browse files
authored
changed files by pdets auto publish service, publishid[14db9f4a-f05a-4f3b-a349-61558e646bd6] and do [publish].
1 parent cb3aba5 commit 73c8766

11 files changed

+13
-13
lines changed

learn-pr/wwl-azure/get-started-generic-anonymous-types/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: 03/31/2025
7+
ms.date: 04/01/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/get-started-generic-anonymous-types/2-examine-generics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Examine generics
44
metadata:
55
title: Examine generics
66
description: "Learn how generics acts as code templates that allow you to define type-safe data structures without committing to an actual data type."
7-
ms.date: 03/31/2025
7+
ms.date: 04/01/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/get-started-generic-anonymous-types/3-explore-advanced-generics-concepts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Explore advanced generics concepts
44
metadata:
55
title: Explore advanced generics concepts
66
description: "Understand advanced concepts of generics, including covariance, contravariance, and generic constraints, to write more flexible, and reusable code."
7-
ms.date: 03/31/2025
7+
ms.date: 04/01/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/get-started-generic-anonymous-types/4-practical-applications-anonymous-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Practical applications of anonymous types
44
metadata:
55
title: Practical applications of anonymous types
66
description: "Learn how to use anonymous types in C# for temporary data structures, LINQ queries, and efficient grouping of related data."
7-
ms.date: 03/31/2025
7+
ms.date: 04/01/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/get-started-generic-anonymous-types/5-exercise-implement-generic-anonymous-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Implement generic and anonymous types
44
metadata:
55
title: Exercise - Implement generic and anonymous types
66
description: "Practice creating generics, advanced generics, and anonymous types in C# to write flexible, reusable, and efficient code."
7-
ms.date: 03/31/2025
7+
ms.date: 04/01/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/get-started-generic-anonymous-types/6-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Knowledge check
44
metadata:
55
title: Knowledge check
66
description: "Check what you've learned in this module."
7-
ms.date: 03/31/2025
7+
ms.date: 04/01/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/get-started-generic-anonymous-types/7-summary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ title: Summary
44
metadata:
55
title: Summary
66
description: "Summarize the key concepts covered in this module."
7-
ms.date: 03/31/2025
7+
ms.date: 04/01/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit
11-
durationInMinutes: 1
11+
durationInMinutes: 2
1212
content: |
1313
[!include[](includes/7-summary.md)]

learn-pr/wwl-azure/get-started-generic-anonymous-types/includes/2-examine-generics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public T GetFirstItem<T>(List<T> items)
7070
return items[0];
7171
}
7272

73-
List<string> names = new List<string> { "Alice", "Bob" };
73+
List<string> names = new List<string> {"Hannah", "Mario"};
7474
string firstName = GetFirstItem(names);
7575
Console.WriteLine(firstName);
7676
```

learn-pr/wwl-azure/get-started-generic-anonymous-types/includes/4-practical-applications-anonymous-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Anonymous types are ideal for creating temporary data structures within the scop
8686
In the following example, an anonymous type is used to group data temporarily:
8787

8888
```csharp
89-
var customer = new { Name = "John Doe", Age = 30 };
89+
var customer = new { Name = "Mario Rogers", Age = 30 };
9090
Console.WriteLine($"Customer: {customer.Name}, Age: {customer.Age}");
9191
```
9292

learn-pr/wwl-azure/get-started-generic-anonymous-types/includes/7-summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ After completing this module, you're now able to:
1212
- [Generics in C#](/dotnet/csharp/programming-guide/generics/)
1313
- [Covariance and Contravariance in C#](/dotnet/csharp/programming-guide/concepts/covariance-contravariance/)
1414
- [Anonymous Types in C#](/dotnet/csharp/programming-guide/classes-and-structs/anonymous-types)
15-
- [Generic Math in .NET 7](/dotnet/generic-math-in-csharp-and-vb/)
15+
- [Generics Math in .NET](/dotnet/standard/generics/math)

0 commit comments

Comments
 (0)