Ejemplo n.º 1
0
    static void Main()
    {
        MilanTest t = new MilanTest();

        RefValTest(t);
        Console.WriteLine(t.SomeValue);     // Prints 5
    }
Ejemplo n.º 2
0
 static void RefValTest(MilanTest x)
 {
     x.SomeValue = 5;
 }