I have a string variable that represents the name of a custom class. Example:
string s = "Customer";
I will need to create an arraylist of customers. So, the syntax needed is:
List<Customer> cust = new ..
How do I convert the string s to be able to create this arraylist on runtime?