How to "cast" from generic List<> to ArrayList
- by Michael Freidgeim
We are writing new code using generic List<> , e.g. List<MyClass>.
However we have legacy functions, that are expect ArrayList as a parameter.
It is a second time, when I and my colleague asked, how to "cast" generic List<MyClass> to ArrayList.
The answer is simple- just use ArrayList constructor with ICollection parameter.
Note that it is not real cast, it copies references to ArrayList.
var list=new List<MyClass>();
//Fill list items
ArrayList al=new ArrayList(list);//"cast"-