Beispiel #1
0
 // This variable is passed by references. If you set something else to this one, the original will be changed
 //                                  |    |
 //                                  V    V
 public static void DoSomethingElse(ref A a)
 {
     a.Foo = "42";         // <---- This changes the property in the original
     a     = new A         // <---- This sets something to the original
     {
         Foo = "Hello world"
     };
 }
Beispiel #2
0
 // This is a local variable. If you set something else to this one, the original won't be changed
 //                              |
 //                              V
 public static void DoSomething(A a)
 {
     a.Foo = "42";         // <---- This changes the property in the original
     a     = new A         // <---- This sets something to the local variable a
     {
         Foo = "Hello world"
     };
 }