Hello,
I have a list of strings. It contains strings with NAMES of my objects. This mean:
First f1 = new First();
Sec f2 = new Sec();
Third f3 = new Third();
And my list contain:
List<string> smth = new List<string>();
First,
Sec,
Third
How can I create object knowing only its name?
foreach(string ex in smth)
{
//and what now?
}