Merge two object lists in c# with Linq
I have two List<T>s which are both the same type is there an easy way to merge to the two sets without looping though both sets and merging them into a third. var myObject= new List<Core.MyObject>(); var myObject2= new List<Core.MyObject>(); if(!string.IsNullOrEmpty(txb.Text)) { var repository =
... [read more]
Submit a review:
Login required.