Instantiate class from string

G

Guest

Hi

I have a string with a classname, and I need to instantiate an object of
this class.

How I can do that?

For example

formclass = "form999"
(formclass)MyNewForm = new (formclass)( );
MyNewForm.Show( );

Of course the string is assigned at runtime
Thanks In Advance

Rodrigo Juarez
Tiempo Hard SA
 
S

Steven Cheng[MSFT]

Hi Rodrigo,

As Barry has suggested, you can use the "Activator.CreateInstance" method
to instance a type dynamically based on its type name. e.g.

static void TestCode()
{
string typename = "MyAppNameSpace.TestClass, AssemblyName";
Type type = Type.GetType(typename);

object obj = Activator.CreateInstance(type);

Console.WriteLine(obj.GetType().FullName);

}

Actually, there are many other useful methods and classes in
System.Reflection namespace that can help us deal with type/object
dynamically.


#Reflection Overview
http://msdn2.microsoft.com/en-us/library/f7ykdhsy.aspx

http://www.c-sharpcorner.com/UploadFile/harishankar2005/Reflectionin.NET1203
2005045926AM/Reflectionin.NET.aspx

Hope this also helps.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.

==================================================



This posting is provided "AS IS" with no warranties, and confers no rights.
 
S

Steven Cheng[MSFT]

Hello Rodrigo,

Does the suggestion on using reflection API helps you or have you got any
further ideas on this? If there is any further questions, please feel free
to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top