Exemple #1
0
        public static void bat(string _ip)
        {
            Client.Client cl = new Client.Client(_ip, 5255, "jak", "kaj");
            cl.Connect();

            object tcl2 = new TestClass();
            bool   b    = cl.Get(ref tcl2, "gigel", typeof(TestClass));

            if (!b)
            {
                Console.WriteLine("Nope.");
            }

            Console.WriteLine(tcl2);
            Console.WriteLine("and should be : ");

            TestClass tcl1 = new TestClass(true);

            tcl1.b        = new double[] { 666.66, 777.777 };
            tcl1.inrr     = new Innerer(true);
            tcl1.a        = 871;
            tcl1.dsa._asd = "merge";
            Console.WriteLine(tcl1.ToString());
        }