Is there a way to create an instance of a class based on the fact I know the name of the class at runtime. Basically I would have the name of the class in a string.
|
1
|
|||
|
|
|
Take a look at the Activator.CreateInstance method. |
||
|
|
|
|
I've used this successfully: System.Reflection.Assembly.GetExecutingAssembly().CreateInstance(string className) You'll need to cast the return object to your desired object type. |
||||||
|
|
|
My question should probably have been more specific I actally know a base class for the string so solved it by: ReportClass report = (ReportClass)Activator.CreateInstance(Type.GetType(reportClass)); The Activator.CreateInstance class has various methods to achieve the same thing in different ways. I could have cast it to an object but the above is of the most use to my situation. |
||
|
|
|
You seem to have described the solution you want to implement, but not the problem you're trying to solve. Perhaps you are trying to do something with extensibility, in which case I suggest you check out the Managed Extensibility Framework. |
||
|
|
