Merge contents of multiple lists of custom objects - C#
问题 I have a class Project as public class Project { public int ProjectId { get; set; } public string ProjectName { get; set; } public string Customer { get; set; } public string Address{ get; set; } } and I have 3 lists List<Project> lst1; List<Project> lst2; List<Project> lst3; lst1 contains Person objects with ProjectId and ProjectName. ProjectId =1, ProjectName = "X", Customer = null, Address = null ProjectId =2, ProjectName = "Y", Customer = null, Address = null lst2 contains Person objects