Generating class object programmatically

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How to progrommatically ...generating class object and how to send the class
name in a property value
 
"Raj" <[email protected]> a écrit dans le message de (e-mail address removed)...

| How to progrommatically ...generating class object and how to send the
class
| name in a property value

Look at the help for Activator.CreateInstance(...) and other reltaed
reflection topics.

Joanna
 
I guess you can instanciate a class programmatically using the
Activator.CreateInstance() method.
For the name of the classe, you can use the <class>.GetType().Name property.

Hope it helps
 

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

Back
Top