I\'m trying to implement a method to concatenate multiple Lists e.g.
List
List l1 = new List { \"1\", \"2\" }; List
Use SelectMany:
SelectMany
public static IEnumerable Concatenate(params IEnumerable[] lists) { return lists.SelectMany(x => x); }