I have two lists
List a = new List(); List b = new List();
Now i want to iterate throug
foreach(object o in a.Concat(b)) { o.DoSomething(); }