I want to do something like:
myObject newObj = GetmyObj(); //Create and fill a new object
myObject anotherObj = myObj.Clone();
I need to make changes to the new object while the properties of the first object are not changed.
Please let me know how to clone or deep copy an object so that the cloned object to be modified without changing original object?
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
stackoverflow.com/questions/129389/how-do-you-do-a-deep-copy-an-object-in-net-c-specifically