I\'m \"cloning\" objects in my code. For instance:
objClone = objOriginal
My question is:
It's a reference copy, if the type is a reference type (ie: classes). If it's a value type (Structure), it will do a member by member copy.