How can I convert a List<MyObject>
to an IEnumerable<MyObject>
and then back again?
I want to do this in order to run a series of LINQ statements on the List, e. g. Sort()
List<string> myList = new List<string>();
IEnumerable<string> myEnumerable = myList;
List<string> listAgain = myEnumerable.ToList();