Skip to content

Commit d346e68

Browse files
authored
Merge pull request #53209 from PhilKang0704/us-436197
US-436197: Content Update - Localization fix: <learn-pr> - Even though a string is a reference type, unlike an array, its value can't be altered once it's assigned.
2 parents 03b6be9 + 1244d73 commit d346e68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

learn-pr/wwl-language/create-c-sharp-methods-parameters/includes/4-exercise-use-value-reference-type-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ In this exercise, you'll learn more about passing reference and value type argum
9393

9494
### Test with strings
9595

96-
Earlier, you learned that strings are an *immutable* type. Even though a string is a reference type, unlike an array, its value can't be altered once it's assigned. You might have noticed this if you've used methods such as `string.Replace` or `string.ToUpper`. In this task, you'll learn to correct a common error found when working with strings.
96+
Earlier, you learned that strings are an *immutable* type. Even though a string is a reference type, its value can't be altered once it's assigned, unlike an array. You might have noticed this if you've used methods such as `string.Replace` or `string.ToUpper`. In this task, you'll learn to correct a common error found when working with strings.
9797

9898
1. In the Visual Studio Code Editor, delete any existing code from the previous exercises.
9999

0 commit comments

Comments
 (0)