You could do something like this:
IList oIList1 = new List{"1","2","3"};
IList oIList2 = new List{"4","5","6"};
IList oIList3 = oIList1.Concat(oIList2).ToList();
So, basically you would use the Concat()
extension and ToList()
to get a similar functionality as AddRange()
.
Source