示例#1
0
 public static object DeepClone(this object obj, Call call = null, bool publicOnly = false)
 {
     call ??= new Call();
     return(SerializerMemory.DeepClone(call, obj, publicOnly));
 }
示例#2
0
 public static T DeepClone <T>(this T obj, Call call = null, bool publicOnly = false)
 {
     call ??= new Call();
     return(SerializerMemory.DeepClone <T>(call, obj, publicOnly));
 }