示例#1
0
        static void test1(CaObject obj1)
        {
            List <CaObject> obj1New = new List <CaObject>();

            obj1New.Add(obj1);
            obj1New[0].M1 = 1000;
        }
示例#2
0
        static void Main(string[] args)
        {
            CaObject obj = new CaObject(1, 1, "S1");

            test1(obj);
            return;
        }
示例#3
0
 static void test2(CaObject obj2)
 {
 }