1. Deep copy When you copy an object that contains other objects, like an Array, only a reference to these objects is copied. You can see that in action here:

Using the Marshal class, which is normally used for serialization, you can create a ‘deep copy’ of an object.

The results:

2. […]

Read More