List of properties and methods at RUNTIME

  • Thread starter Thread starter Kishor
  • Start date Start date
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
 
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.
 
Back
Top