From 30b8444b6de92521502959d4426bfdd59a850f33 Mon Sep 17 00:00:00 2001 From: Jason Zhu Date: Fri, 19 Feb 2021 11:33:33 +1100 Subject: [PATCH] Change title --- .../5_working_with_reference_types_and_value_types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp_fundamentals/5_working_with_reference_types_and_value_types.md b/csharp_fundamentals/5_working_with_reference_types_and_value_types.md index de90bb7..eb3a918 100644 --- a/csharp_fundamentals/5_working_with_reference_types_and_value_types.md +++ b/csharp_fundamentals/5_working_with_reference_types_and_value_types.md @@ -30,7 +30,7 @@ Check tests `GetBookReturnDifferentObject()` & `TwoVarsCanReferenceSameObject()` Trick: * `Object.ReferenceEquals(obj1, obj2)` return Boolean for whether two objs has same reference value -## Passing Parameters by Value & Returning Object References +## Passing Parameters by Value & Returning Object References & Passing Parameters by Reference Reference: * [Passing Parameter (C# Programming Guide)](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/passing-parameters)