I\'m trying to implement a method to concatenate multiple Lists e.g.
List
List l1 = new List { \"1\", \"2\" }; List
All you have to do is to change:
public static IEnumerable Concatenate(params IEnumerable lists)
to
public static IEnumerable Concatenate(params IEnumerable[] lists)
Note the extra [].
[]