vote up 5 vote down star
1

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.

flag

I'm really tempted to close this question as a duplicate, but try as I might I can't find another question that's close enough to it. Certainly there have been many questions to which Activator.CreateInstance is the answer, but nothing exactly like this that I can find. – Matt Hamilton Oct 21 '08 at 23:41

4 Answers

vote up 7 vote down check

Take a look at the Activator.CreateInstance method.

link|flag
vote up 2 vote down

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.

link|flag
hm.. turns out usernames aren't unique. – Ray Oct 21 '08 at 23:48
I'm trying to imagine a scenario where creating the object via class name and then casting it as that type would make any sense at all. – MusiGenesis Oct 21 '08 at 23:53
I see what you mean. It seems redundant. If you know the class name, why do you need the dynamic string? One situation could be that your casting to a base class and the string represents descendants of that base class. – R4Y Oct 21 '08 at 23:58
vote up 0 vote down

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.

link|flag
Instead of responding in the question section, I would suggest you edit your question and note the changes. You will get more/better answers for doing it. – Jason Jackson Oct 22 '08 at 0:53
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.