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