Exemple #1
0
 /// <summary>
 /// Deep copies all properties of source into the properties of target
 /// Deep copying copies all primitive and enumeration properties and the properties for which MetaInfo "ObjectCopy" is set to true
 /// </summary>
 /// <param name="source">The source object</param>
 /// <param name="target">The target object</param>
 public static void Copy(object source, object target)
 {
     ObjectSupport.Copy(source, target, "");
 }