How to merge two lists in c#?
Rajeev Punhani
Select an image from your device to upload
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);