let's suppose there are two objects of class abc
abc obj = new abc(10,20); // setting the values of two var. say x and y
abc obj1 = obj; // pointing to same memory so same values
But if there is a way where I can assign the values of one object to another, both having diff. memory. Simply said I want the values to copied not the address. Any operator or something can do that ?