From 3493bb4d51aeec0dcf196248047c3aba4da63968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9?= <135858315+andre1110@users.noreply.github.com> Date: Sat, 21 Sep 2024 18:15:41 +0700 Subject: [PATCH] Fix copy-paste error method-parameters.md --- docs/csharp/language-reference/keywords/method-parameters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/language-reference/keywords/method-parameters.md b/docs/csharp/language-reference/keywords/method-parameters.md index d69693fd739d5..8b5b56fc5c7a7 100644 --- a/docs/csharp/language-reference/keywords/method-parameters.md +++ b/docs/csharp/language-reference/keywords/method-parameters.md @@ -35,7 +35,7 @@ How an argument is passed, and whether it's a reference type or value type contr - If the method assigns the parameter to refer to a different object, those changes **aren't** visible from the caller. - If the method modifies the state of the object referred to by the parameter, those changes **are** visible from the caller. - When you pass a *value* type *by reference*: - - If the method assigns the parameter to refer to a different object, those changes **aren't** visible from the caller. + - If the method assigns the parameter to refer to a different object, those changes **are** visible from the caller. - If the method modifies the state of the object referred to by the parameter, those changes **are** visible from the caller. - When you pass a *reference* type *by reference*: - If the method assigns the parameter to refer to a different object, those changes **are** visible from the caller.