首页 > TAG信息列表 > StudentSecond

C# 利用"表达式树"快速高效率复制对象

1、需求 在代码中经常会遇到需要把对象复制一遍,或者把属性名相同的值复制一遍。 比如: public class Student { public int Id { get; set; } public string Name { get; set; } public int Age { get; set; } } public class StudentSecond { public int Id {