예제 #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 void Setup()
 {
     serializer = new SerializerMemoryAtlas();
 }
예제 #3
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));
 }