Esempio n. 1
0
        static void Main(string [] args)
        {
            SampleRefType rt = new SampleRefType();

            rt.value = 44;
            ModifyObject(rt);
            Console.WriteLine(rt.value);
        }
Esempio n. 2
0
 static void ModifyObject(SampleRefType obj)
 {
     obj.value = 33;
 }