Posts by Stan SDK • 11 points
1 post
-
1
votes1
answer137
viewsA: Want to convert a list<any type> to a list of type Generic?
The very one List<T> is already a Generic, just you pass the Type as List<string> for example and will have a generic list. If you need a list that accepts any type you can use Arraylist…