Exemplo n.º 1
0
 public static object DeepClone(this object obj, Call call = null, bool publicOnly = false)
 {
     call ??= new Call();
     return(SerializerMemory.DeepClone(call, obj, publicOnly));
 }
Exemplo n.º 2
0
 public void Setup()
 {
     serializer = new SerializerMemoryAtlas();
 }
Exemplo n.º 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));
 }