Skip to content
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.
- 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