Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing the typo as listed in ticket 41628 #41631

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
samwherever marked this conversation as resolved.
Show resolved Hide resolved
- 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.
Expand Down
Loading