I know that I can obtain a type from string name like so
Type intType = Type.GetType("System.Int32");
But, what if I have string like so
string[] typeNameArr = new string[] {"Int", "String", "DateTime", "Bool"};
How to convert these to actual types? Maybe I can get full qualified name out of an alias and then do the GetType
?