I am having trouble writing a typeof statement which would be using a variable from a config file the code is like this
Type t = new typeof ("My.other.class" + configValue[0]);
configValue being the dynamic value I get from the app.config file.
The error I get is "type expected" it is fine if I type out the class directly so I am assuming my formatting is incorrect. How should this be written?