Esempio n. 1
0
        public static void Main(string[] args)
        {
            TestClass a = new TestClass();

            a.a = 123;
            a.b = 456;
            a.c = "some prorerty";

            RefLab.DebugPrint(a);
        }
Esempio n. 2
0
        public static void Main(string[] args)
        {
            TestClass a = new TestClass(123, 456, "some property", "not print property");

            RefLab.DebugPrint(a);
        }