Ejemplo n.º 1
0
 public static int Copy(object destination, object source)
 {
     if (destination == null || source == null)
     {
         return(0);
     }
     return(GameTools.Copy(destination, source, source.GetType()));
 }
Ejemplo n.º 2
0
 public static int Copy(object destination, object source, Type type)
 {
     return(GameTools.Copy(destination, source, type, null));
 }