List of properties and methods at RUNTIME

K

Kishor

Hi all,
In VB.Net application, I am creating objects (Late Binding), I wanted to
display all the propeties and methods at run time. How do I go about this?.
Please help me this is urgent.

TIA
Kishor
 
B

Bill McCarthy

hi Kishor,

Search for information on "Reflection". Basically you get a Type, using either the
GetType(ClassName) function, or from an instance use it's GetType method. Once you
have the Type then use it's GetMembers method etc..


Bill.
 

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

Top