123
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SendObjsByValueByRef { class Program { static void Main(string[] args) { } // will change age or some other property but not object static void SendAPerson(Person p) { p.personAge = 99; p = new Person("Nikki", 99); } // will change an object too static void SendAPersonByRef(ref Person p) { p.personAge = 99; p = new Person("Nikki", 99); } } class Person { public string personName; public int personAge; //constructors public Person(string name, int age) { personName = name; personAge = age; } public Person() { } public void Display() { Console.WriteLine("Name:{0},Age:{1}", personName, personAge); } } } |