代码如下:具体看注释 [Serializable] public class A { public virtual string Name { get; set; } public int Age { get; set; } } class Program { static void Main(string[] args) { ShallowCopyTest(); DeepCopyTest(); } // 利用序列化和反序列化的方式 public static T DeepClone<T>(T…