namespace Front.Services { public static class ExMethod { public static T Clone(this T obj) { var inst = obj.GetType().GetMethod("MemberwiseClone", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic); return (T)inst?.Invoke(obj, null); } } }