How to create instance of class from string?
Hi,
I have a string which contains the namespace and name of a class...
eg. "MyProject.Classes.MyClass";
I need to create an instance of this class. Normally would do like this:
Object obj = new MyProject.Classes.MyClass();
But how do I create it from the string instead? Is it even possible??
Thanks!
M
robwhitby78Posted Mar 10, 2005, 5:23 AM
yasser_8227Posted Mar 9, 2005, 6:29 PM