static void Main()
        {
            Console.WriteLine("Main");
            ConstructorExample obj = new ConstructorExample();

            GC.Collect();
            ConstructorExample obj1 = new ConstructorExample(10, 20);
            // obj = obj1;
            ConstructorExample obj2 = new ConstructorExample(obj);

            GC.Collect();
            Console.WriteLine(obj.ToString());

            Console.WriteLine(obj1.ToString());
            Console.WriteLine(obj2.ToString());
            Console.ReadKey();
        }
 ConstructorExample(ConstructorExample obj)
 {
     this.a = obj.a;
     this.b = obj.b;
 }