I have a problem regarding creating a object of a class in c# where a class name is stored in a string variable
eg. String str="Pilot"
As we create object of the class like this
ClassName objectname=new ClassName();
due to some reason instead of ClassName i need to use String Variable which stores my Class name.