Who knows the easiest way to convert a List of strings to an ArrayList?
I tried setting (ArrayList) before the code but this doesn't do anything.
Sure:
ArrayList arrayList = new ArrayList(list);
That works because List<T> implements ICollection.
However, I'd strongly advise you to avoid ArrayList (and other non-generic collections) if at all possible. Can you refactor whatever code wants an ArrayList to use a generic collection instead?
RecyclerView before that comment (that I remember, anyway) I'm afraid.ArrayList in Java (which is generic) and ArrayList in .NET (which isn't).ArrayList has a constructor which accepts an ICollection. Since List<T> implements ICollection, the following should work:
var myArrayList = new ArrayList(myList);