Skip to content

Commit 393ea1a

Browse files
authored
changed files by pdets auto publish service, publishid[351dc9c1-1381-4c1e-afc4-6cdbebf18074] and do [publish].
1 parent 62a3dfb commit 393ea1a

10 files changed

+11
-10
lines changed

learn-pr/wwl-language/csharp-choose-data-type/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: 11/04/2024
7+
ms.date: 02/26/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/csharp-choose-data-type/2-value-reference-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Discover value types and reference types
44
metadata:
55
title: Discover value types and reference types
66
description: "Learn about data types, and how data and data types work in C# and .NET."
7-
ms.date: 11/04/2024
7+
ms.date: 02/26/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/csharp-choose-data-type/3-exercise-integral-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Discover integral types
44
metadata:
55
title: Exercise - Discover integral types
66
description: "Discover integral types, and practice using signed integral types in C#."
7-
ms.date: 11/04/2024
7+
ms.date: 02/26/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/csharp-choose-data-type/4-exercise-floating-point-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Discover floating-point types
44
metadata:
55
title: Exercise - Discover floating-point types
66
description: "Learn what floating-point data types are, and the nuanced differences between each data type."
7-
ms.date: 11/04/2024
7+
ms.date: 02/26/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/csharp-choose-data-type/5-exercise-reference-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Discover reference types
44
metadata:
55
title: Exercise - Discover reference types
66
description: "Discover reference types, and how they're different from value types."
7-
ms.date: 11/04/2024
7+
ms.date: 02/26/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/csharp-choose-data-type/6-choose-right-data-type.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Choose the right data type
44
metadata:
55
title: Choose the right data type
66
description: "Learn the best practices that will help you to choose the right data type."
7-
ms.date: 11/04/2024
7+
ms.date: 02/26/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/csharp-choose-data-type/7-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: 11/04/2024
7+
ms.date: 02/26/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/csharp-choose-data-type/8-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: 11/04/2024
7+
ms.date: 02/26/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-language/csharp-choose-data-type/includes/4-exercise-floating-point-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Second, you must consider the manner in which the values are stored and the impa
1111

1212
Performing math on binary floating-point values can produce results that may surprise you if you're used to decimal (base 10) math. Often, binary floating-point math is an approximation of the real value. Therefore, `float` and `double` are useful because large numbers can be stored using a small memory footprint. However, `float` and `double` should only be used when an approximation is useful. For example, being a few thousandths off when calculating the splatter of a snowball in a video game is close enough.
1313

14-
When you need more a more precise answer, you should use `decimal`. Each value of type `decimal` has a relatively large memory footprint, however performing math operations gives you a more precise result. So, you should use `decimal` when working with financial data or any scenario where you need an accurate result from a calculation.
14+
When you need a more precise answer, you should use `decimal`. Each value of type `decimal` has a relatively large memory footprint, however performing math operations gives you a more precise result. So, you should use `decimal` when working with financial data or any scenario where you need an accurate result from a calculation.
1515

1616
### Use the MinValue and MaxValue properties for each signed float type
1717

learn-pr/wwl-language/csharp-choose-data-type/index.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ uid: learn.languages.csharp-choose-data-type
33
metadata:
44
title: Choose the correct data type in your C# code
55
description: "Choose the correct data type for your code from several basic types used in C#."
6-
ms.date: 11/04/2024
6+
ms.date: 02/26/2025
77
author: wwlpublish
88
ms.author: eric
99
ms.topic: module
10+
ms.collection: N/A
1011
ms.custom:
1112
- N/A
1213
ms.service: dotnet-csharp

0 commit comments

Comments
 (0)