EXAMPLE:
List<string> list1 = new List<string>();List<string> list2 = new List<string>();var combined = list1.Concat(list2);
List<string> list1 = new List<string>();
List<string> list2 = new List<string>();
var combined = list1.Concat(list2);
List employees = new List() { new Employee { EmpID = 1 , Name ="Martin"}, new Employee { EmpID = 2 , Name ="Peter"}, new Employee { EmpID = 3 , Name ="Michael"}, new Employee { EmpID = 3 , Name ="Michael"} }; List employees2 = new List() { new Employee { EmpID = 1 , Name ="Abundantcode"}, new Employee { EmpID = 2 , Name ="Best Programmer"}, new Employee { EmpID = 3 , Name ="Mike"}, new Employee { EmpID = 3 , Name ="Michael"} }; var MergedEmployees = employees.Union(employees2).ToList();